Intro in RPA: Staicu Adelina Nicoleta Nicoleta - Staicu@unibuc
Intro in RPA: Staicu Adelina Nicoleta Nicoleta - Staicu@unibuc
Learning Outcomes
After completion of this exercise you will get familiar with the
following:
✓ “Sequence”
✓ “Comment” and “Annotation”.
✓ “Open Browser” activity.
✓ “Type into” activity.
✓ “Browser scope” activity.
✓ “Extract data” activity.
✓ “Write CSV” activity.
Extracting data from a website
Algorithm:
Step 1: START
Step 2: Open the URL using Open Browser Activity
Step 3: Declare variables as ‘CSVFile’, ‘ExtractedDT’, ‘SearchItem’, ‘URL’.
Step 4: Use the variables in the different activity blocks to search, find
the given item
Step 5: Output the result in the write csv file activity
Step 6: STOP
Step by Step process:
Learning Outcomes
After completion of this exercise you will get familiar with the
following:
✓ “Sequence” and “Assign” activity.
✓ “Comment” and “Annotation”.
✓ “Open Browser” and “Maximize Window” activity.
✓ “Excel Application Scope” and how to set conditions.
✓ “For Each Row”, “Excel Read Range”, “Type Into”, “Click” and “Get
Row Item” activity and how to set variables in a code using “Variable”
panel
Filling a webform from an excel
sheet
Filling a webform from an excel sheet
Algorithm:
Step 1: START
Step 2: Add Browser activity and put
https://forms.gle/BnonGQCaaY8QGzk46 this link inside the browser
activity.
Step 3: Add the Excel application scope activity and add the excel file in
it and read the excel file
Step 4: Add For Each row activity to read the contents of the excel file
Step 5: Add one or more sequence and add Type Into activity in it to
read “FirstName”, “LastName”, etc. (row(“FirstName”)) or Get Row
activity
Step 6: Add Click activity to click “Submit”.
Step 7: STOP
Use desktop calculator to
calculate different sums
Use desktop calculator to calculate different sums
Algorithm:
Step 1: START
Step 2: Open Calculator desktop application
Step 3: Add click activity and select the first number
Step 4: Add click activity and select the operation sign
Step 5: Add click activity and select “=“ sign
Step 6: Add get text activity and scrape the result
Step 7: Add message box activity and display the result scraped
Step 8: STOP
Additional: Make the selectors dynamic – for each input from the user,
the robot will calculate the sum.