0% found this document useful (0 votes)
80 views26 pages

178 RPAPractical

This document provides steps for several UiPath practices involving control flow and decision making activities. The practices cover using Assign, While, Do-While, For Each, If, and Switch activities. Some key steps include assigning variables, setting conditions, writing output, and getting user input to drive the conditional logic. The goal is to demonstrate how to implement different control structures and make decisions in a UiPath workflow.

Uploaded by

Nidhi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
80 views26 pages

178 RPAPractical

This document provides steps for several UiPath practices involving control flow and decision making activities. The practices cover using Assign, While, Do-While, For Each, If, and Switch activities. Some key steps include assigning variables, setting conditions, writing output, and getting user input to drive the conditional logic. The goal is to demonstrate how to implement different control structures and make decisions in a UiPath workflow.

Uploaded by

Nidhi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 26

Practical 01

Aim: UiPath installation & UiPath Studio panels.

Steps:

1. Visit the website https://www.Uipath.com/Community

2. A community edition page with open, click on “Get Community Edition”.

3. User detail page will open so enter your “First name”, “Last name” &
“Email ID” or you can enter through “Twitter account”
Click on “Request for Community Edition”
4. Other page will open so click on “here” for download.
5. Run the “.exe” file & Install the UiPath.
6. After installation launch UiPath, Select “new project” & choose “start free”
option.

7. After clicking on “Start Free”, it will ask for “email ID” for online
activation.
8. The UiPath successfully installed.
Practical 02
Aim: Automation of recycle bin.

Steps:

Start the Web recorder and simply perform the following steps:

1. Go to the desktop by pressing the Windows + D keys.

2. Open Recycle Bin by clicking on Recycle Bin and then pressing Enter key.
3. Click on the Manage tab of the Recycle Bin folder.

4. Click on the Empty Recycle Bin button.


5. Confirm by clicking on the Yes button in the dialog box.

6. Close the Recycle Bin folder by pressing the cross button.


7. Press the Esc key and Save & Exit the recorder.
8. Now run the UiPath Progra
Practical 03
Aim : Recording feature of Uipath (Notepad & formatting saving input with user
automation).

Steps :

1. Drag and drop a Flowchart activity from the Activities panel.

2. Click on the Recording icon on the top of UiPath Studio

3. Click on Notepad to open it. A Notepad window will pop up.


4. Click on the text area of Notepad. Type into the dialog box. press ENTER.

5. Click on the Edit button Choose the Select all.


6. 6. option from the drop-down list.

7. Once again, click on the Edit button. It will again ask you to indicate the
anchor. element. Indicate the anchor button and the Edit button will be
highlighted, giving you a drop-down box. Select the Copy option.
8. Double-click on the Recording sequence that is generated by the recording.
Scroll down and drag and drop the Copy selected text and Message box
activities inside the Recording sequence.

9. Create a variable of type String to store the output value of Copy selected
text. specify the newly created variable in the Output property of the Copy
selected text activity.
10.Specify the string variable in the text property of the Message box activity
Hit the Run button to see the result.
Practical 04
Aim : Web Recording in UiPath (Gmail).

Steps :

1. Go to blank process and take a sequence.

2. Start on app/web Recorder.

3. Open the chrome browser add delay 1 sec.


4. Open gmail then sign in then enter.
5. Go on trash.

6. Click on empty trash and click ok.

7. Stop recording and run file.


Practical 05
Aim : Flowchart implementation in UiPath.

Steps :

1. Drag and Drop a flowchart from the activity panel.

2. Add a Write line activity from the Activities panel and connect it to the Start
node.Select the Write line activity.and type the following text into the Text
box: “Hi! What is your name”.

3. Add a Delay activity and connect it to the WriteLine activity.

4. Select the Delay activity and go to the Properties panel. In the Duration
field, set 00:00:05. This is a 05-second delay between the two logged
messages.
5. Take another Write line activity and connect it to the Delay activity. In
theText field, write “I am Delay”.

6. Connect all the nodes. Save and run the program.


7. After clicking on the Run button, the Output panel shows the message that
delays it by 06 seconds.

Practical 06
Aim: Implementing sequence in flowchart using UiPath.
Steps:
1. Go to Blank process and choose Flowchart. Drag and Drop the Sequence inside the
Flowchart.

2. Now, select Do while loop. Create and Assign ‘y’ integer variable in Do while activity.

3. Use, Writeline activity to display the value of ‘y’.


4. Give the Condition accordingly. Save and run the program.

Practical 07
Aim: Data Table activities in UiPath.

Steps:

2. Drag and Drop the Flowchart under that drag and drop the sequence & choose
the sequence start node.

3. Now, Double click on sequence & then from the activihty panel choose build
datatable.

4. Click on datatable option pop-up window will appear. Remove both the
column’s.
5. Now, Simply add the columns by clicking on the symbol ‘+’ i.e Name,
Rollno & Class and press ’OK’. As soon as we press ‘OK’ the table will be
created in build data table.

6. Add some records in the created table using build data table. Since, the data
table is ready press ‘OK’. So, now from property window we can save the
data with variable name “MyDatatable” also specify in the output property.
7. Choose for each row loop in the sequence option from the activity panel.

8. CurrentRow(“Name”).ToString+”-”+CurrentRow(“RollNo”).ToString+”-”+
CurrentRow(“Class”).ToString.
9. Save and Run the program.
Practical 08
Aim: Screen/Web scraping.

Steps:

1. Select flowchart ->Sequence->Get OCR text.

2. Save and Run the program.


Practical-09

Aim: Control flow and decision making

1)Assign activity

Steps:

1. Create a sequence to the design panel


2. Drag and drop assign activity from activity panel
3. Assign variables with variable type as int32
4. Use write line to display the value of var 3
5. Run the program
2)While activity:

Steps to follow:

1. Create a sequence
2. Assign x integer variable and assign default value 5
3. Now add while activity in sequence activity
4. In condition field write x<5
5. Drop assign inside body and assign values as x= x+5
6. Use write line to display the value x
7. Run the program

3)Do –while

1. Create a new sequence to design panel


2. Drag and drop do while into the sequence
3. In body section drop assign activity and assign y variable as int32
4. Y=y+2
5. Use write line to display the value y
6. Here condition is going to be y<20 to display numbers till 20.
4)For Each

Steps to follow:

1. start with blank project , add sequence to design panel

2. drag and drop for each within sequence and create integer x.

3. In default value of variable ,put{2,4,6,8,10,12,14,16,18,20}

4. Use write line to display the value of item


5)If activity

Steps to follow:

1.add a flow chart from activity panel

2. create two integer variable x and y, add default values of x and y .

3. drag and drop if activity, then write condition as x+y>6

4. enter true as text in then category and false in else category

5. keep changing values of x and y then check whether output appears as true or
false according to your condition.
6)Switch

Steps to follow:

1. create a sequence from blank project

2. select input dialogue box from activity panel

3. change label and caption from property window of input box

4. choose switch activity from activity panel and write all the condition

5. save and run the program.

You might also like