One Week UiPath Getting Started Training
One Week UiPath Getting Started Training
Note:
Live-Only Sessions: These sessions are live-only, and we won't provide recordings. This allows for real-
time interaction, but it means you can't revisit the content later. Please engage actively during the
session.
Beta Program Learning: We're all learning together in this beta program. Expect some adjustments as we refine
the format. Your feedback is invaluable for improvement.
Shorter Duration: We're exploring shorter session durations to fit busy schedules. We'll be clear about the
session objectives, so you know what to expect.
Tech Challenges: There may be occasional technical glitches or tool issues. We're ready to tackle them swiftly to
keep the sessions smooth. Patience is appreciated.
Information Sharing: Complex topics may need extra clarification. We're here to answer questions and address
any confusion.
Interactive Engagement: Active participation is encouraged – ask questions and share experiences. It enhances
the learning experience for everyone.
Feedback and Support: Your feedback matters. Reach out for support or report issues, and we'll work on
improvements based on your input.
Members who win final quiz will get a scholarship of 3000 INR to Join in UiPath Basics
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
1.4.2. Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, 2019, and 2022: x86
version for a 32-bit OS (required for SVN and GIT source control) x64 version for a 64-bit OS
(required for GIT source control)
1.5. Components of UiPath
1.5.1. UiPath Orchestrator:
1.5.1.1. Orchestrator is a cloud based UiPath management and storage drive
1.5.1.2. Orchestrator manages the creation, monitoring, scheduling, and
controlling of automated bots and processes.
1.5.1.3. It manages Queues, triggers, Assets, Project etc.
1.5.1.4. Orchestrator also functions as a repository for libraries, reusable
components assets and processes used by robot or developer
1.5.2. UiPath Studio
1.5.2.1. Ui Path Studio helps you design automation workflows visually, quickly
and with basic programming knowledge
1.5.2.2. In Ui Path studio, automated processes are built in a visual way using the
built-in recorder, drag & drop activities
1.5.2.3. Activities form into comprehensive workflows in Studio, which are then
executed by the Robot and published to Orchestrator.
1.5.3. UiPath Robots
1.5.3.1. The Robot is UiPath’s execution agent that enables to run processes
developed in Studio.
1.5.3.2. It executes workflows/instructions sent either locally or through
Orchestrator
1.6. Type of BOTs
1.6.1. Attended BOT
1.6.1.1. Attended BOT is triggered by user events and operates alongside a
human on the same workstation
1.6.1.2. An attended bot will “attend to” or assist a human with a task and are
activated by the user by the click of a button
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
1.10.2.2. Select the appropriate download option for UiPath Studio. You can
choose between the Community Edition (free) or the Enterprise Edition
(licensed). Please select community edition
1.10.2.3. Follow the on-screen instructions to download the installer for UiPath
Studio. Save it on your computer.
1.10.3. Install UiPath Studio
1.10.3.1. Locate the downloaded UiPath Studio installer and double-click it to
launch the installation wizard.
1.10.3.2. Follow the installation wizard's prompts:
1.10.3.3. Review and accept the license agreement.
1.10.3.4.
1.10.3.5. Choose the installation folder (the default location is usually fine).
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
1.10.3.6.
1.10.3.7. Select the installation components you need (usually, all components are
selected by default).
1.10.3.8.
1.10.3.9. Complete the installation process by clicking "Install."
1.10.3.10. Once the installation is complete, click "Finish" to exit the installer.
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
b. Step1:
i) Search and add Message Box activity
(1) Text: Provide the required string. Ex: “Welcome to vajrang.org”
b. Step2:
i) Add Log Message activity
(1) Message: Log Message for successful execution (Ex: Executed successfully)
(2) Log level: Select Info
c. Step3:
i) Run the Project
ii) Verify the output in the output panel.
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
2.2. Perform Math Operations on two Numbers (Addition, Subtraction and multiplication)
a. Solution:
i) Create A new project
(1) Name *: Perform Math Operations on two Numbers (Addition Subtraction and
multiplication)
(2) Description - Perform Math Operations on two Numbers and output the results.
ii) click on the Activity panel and search for the activities
b. Step1:
Collect input (First Number) from the user
i) Select Input Dialog activity
(1) Dialog Title: Provide the title of the dialog box. (Ex: First Number)
(2) Input Label: Provide the message or question displayed to the user. (Ex: "Enter
First Number")
(3) Input Type: Choose the required input (Ex: Text Box)
(4) Value entered: Create a variable to store the user input (Ex: FirstNumber)
c. Step2:
Collect input (Second Number) from the user
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
h. Step7:
i) Select Assign activity to assign MultiplicationResult value
(1) Save to: Create variable with Data type Integer (EX: MultiplicationResult)
(2) Value to save: Multiplicate the two numbers. Provide the following.
(Ex: FirstNumber*SecondNumber)
i. Step8:
i) Select Message Box activity to display the multiplication result
(1) Text: Enter a static message and use variable to display multiplication result
(Ex: "Product of two numbers " +FirstNumber.ToString+" and "+SecondNumber.ToString+" is
"+MultiplicationResult.ToString)
j. Step9:
i) Add Log Message activity
(1) Message: Log Message for successful execution (Ex:” Math operations on two
numbers performed successfully”)
ii) Log level: Select Info
k. Step10:
i) Run the Project
ii) Verify the output in the output panel.
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
"Before commencing the extraction process, please ensure that you have opened the web
browser from which you intend to retrieve data."
Solution:
i) Click on process to Create New project
ii) Add details to the project
(1) Name *: "Web Data Extraction and Export to Excel"
(2) Description - Retrieve information from the website
https://www.vajrang.org/trainings/challenges/table-data-scraping and display
the results in Excel.
iii) Click on the activity panel and search for the activity
a. Step1:
i) Add Use Application/Browser Activity
a. Click on Indicate application to automate (I)
i. Indicate the browser from which you want to extract data. Here in our
case, we need to indicate on the following browser
https://www.vajrang.org/trainings/challenges/table-data-scraping
b. Step2:
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
i) Add Extract Table Data activity inside the Use Application/Browser Activity
a. Click on Indicate in Chrome: XPERIENCE AI – Login
i. Click on Add new column
ii. "Click on the column to initiate data extraction. After selecting a single
column, you will be prompted to confirm whether you'd like to extract
data from all the columns in the table. Please choose 'Yes' to proceed.
iii. Click on Save & close
iv. Create a variable to store the extracted data
i. Extract to: Create a variable (Ex: dt_ExtractedData)
f. Step3:
i) Add Filter Data Table activity to filter the “completed” column with only true values
i. Data Table: Provide Extract Table Data Variable I.e., dt_ExtractedData
ii. Click on Configure Filter
i. Filter Rows
1. Choose “Keep”
a. Provide the given data in the following fields
i. Column: “completed”
ii. Operation: Contains
iii. Value: “true”
iii. Create a variable to store the filtered data
i. Filtered DataTable: Create a variable (Ex: dt_FilteredData)
g. Step4:
i) Add Write Range Workbook activity to display the results in Excel.
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
(1) Workbook path: "If an Excel file already exists in your project folder, select it.
Otherwise, provide a name in double quotes with the .xlsx extension (e.g.,
"ExtractedData.xlsx") to create a new Excel file."
(2) Sheet Name: Give the Sheet Name in double quotes (Ex: “Sheet1”)
(3) Data Table: Provide Filter Data Table Variable I.e., dt_FilteredData
h. Step5:
i) "Incorporate a 'Log Message' Activity to record information regarding the successful
retrieval, data filtering, and presentation in Excel."
(1) Log Level: Select Info
(2) Message: "Successfully extracted the data from web, filtered the data and
written in Excel"
i. Step6:
i) Run the Project
ii) Verify the output in the output panel.
iii) Check the Excel for data availability
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects
VAJRANG.ORG UIPATH GETTING STARTED IN 1 WEEK
Quiz will be opened only from 12:45 PM to 1:00 PM after that it will be locked
Transform your career through our exclusive training programs through UiPath Basics and UiPath Projects