Introduction
Robotic Process Automation is a technology that allows anyone today to configure computer software, or a “robot” to emulate and integrate the actions of a human interacting within digital systems to execute a business process.
RPA robots utilize the user interface to capture data and manipulate applications just like humans do. They interpret, trigger responses, and communicate with other systems in order to perform on a vast variety of repetitive tasks. Only substantially better: an RPA software robot never sleeps and makes zero mistakes.
UiPath is a leading Robotic Process Automation vendor that provides a complete software platform to help organizations efficiently automate their business processes.
UiPath Studio is a tool that can model an organization's business processes in a visual way.
Reading this article, you can learn how to perform arithmetic operations like Addition, Subtraction, Multiplication, Division using UiPath Studio Pro Community.
The following are important tools required for developing UiPath Bots:
- Windows 7/8.1/10 (Recommended)
- UiPath Studio Pro - Community Cloud (free software available online.)
Now we can discuss App development step-by-step.
Step1
Open UiPath Studio -> Start -> New Project-> Click Process
Step 2
Now, create a New Blank Process, name it UiArithmatic and give it a description
Step 3
After that, UiPath studio creates the project UiArithmatic with the supporting files:
Step 4
Next, to perform arithmetic operations:
Double-click the Main.xaml workflow, Click Activities -> search Input Dialog ->Drag and drop it into the sequence:
For reading the First Number, set the values Display name, Label, Title, Result (for the result value, go to variables tab and create a variable Num1 in the property window)
Similarly, create one more Input Dialog for Second Number, set the values Display name, Label, Title, Result (for the result value, go to variables tab and create a variable Num2 in the property window).
Step 5
For Arithmetic operations:
Click Activities -> search message box -> Drag and drop it into the sequence, then edit the text in 4 message boxes Addition, Subtraction, Multiplication, and Division,
Step 5
To run your project, select debug file -> Run, The output of the UiArithmatic project is:
Read the First Number:
Read the Second Number:
The result of the arithmetic operation is:
Summary
In this article, you successfully created and tested your UiArithmatic for Arithmetic operations using UiPath Studio.