The document outlines various automation tasks using UiPath, including filling forms with mouse and keyboard activities, using OCR to digitize handwritten text, and performing web recordings. It also describes creating a variable for the day of the week to display greetings and automating Notepad to save a text file. Additionally, it includes a task to count odd and even integers in an array and display the results.
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 ratings0% found this document useful (0 votes)
13 views12 pages
RPA Assignment
The document outlines various automation tasks using UiPath, including filling forms with mouse and keyboard activities, using OCR to digitize handwritten text, and performing web recordings. It also describes creating a variable for the day of the week to display greetings and automating Notepad to save a text file. Additionally, it includes a task to count odd and even integers in an array and display the results.
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/ 12
3.
Using mouse activity do following to fill the form:
Mouse Actions click: Click on input fields to type data
Hover: Hover over dropdown
Double-click: Double-click submit button after filling
Use keyboard activity Use type info for typing username
Use secure text to type password
4. Create a variable dayOfWeek of type String to store the current day (e.g., "Monday", "Friday", "Saturday"). Use the Switch activity to display greetings based on the dayOfWeek Switch Activity: Expression: dayOfWeek
If dayOfWeek is "Monday", it will show "Start your week with energy!".
1. Use OCR to digitize handwritten essays or assignments and convert them into editable text. Steps: Take a picture of the handwritten assignment or essay. Use Get OCR Text to extract the handwritten text. Output the text to a Word document or a text file for easy editing or submission. 5. Use web recording perform the following Open Google: Type https://www.google.com in the address bar and press Enter. Type UiPath in the Google search bar and press Enter Click on the first result: After the search results load, click on the first search result link. After performing the actions, click on the Stop Recording button. 6. Use the basic recording and do the automation of opening notepad. Type Into activity to type the text ("Hello, UiPath!") in the Notepad window. Click activity to interact with the File menu, select Save As, and save the file to the disk. 1. Given an array of integers. Illustrate step by step example using UIpath that count total number of odd elements and even elements in the array and display the count in output panel.