Choose Studio Profile for
advanced features or StudioX for simpler, citizen-developer-focused features.
2. The UiPath
Interface
Key
Components
Ribbon: Access tools like
Run, Debug, Publish, etc.
Activities Panel: Drag and drop
prebuilt activities for automation.
Properties Panel: Customize
activity settings.
Project Panel: View files,
dependencies, and settings in your project.
Output Panel: Displays log
messages and errors during execution.
Code Example: Creating a New Project
Open UiPath Studio and click “New
Project”.
Choose a project template:
Process: For standard
workflows.
Library: For reusable
components.
Configure the project name and location.
3.
Variables and Arguments
Code Example: Creating and Using Variables
# Create a variable called myString of type String.
# Assign a value: "Hello, UiPath!"
# Use it in a 'Write Line' activity to output the value.
Key Concepts
Variables: Store data within
workflows.
Common types: String,
Int32, Boolean, DataTable.
Arguments: Pass data between
workflows.
Directions: In, Out,
In/Out.
4.
Sequences and Flowcharts
Code
Example: Basic Sequence
# Create a Sequence.
# Add a 'Message Box' activity with text: "This is a sequence!".
# Run the workflow.
Key Concepts
Sequences: Linear workflows, best
for simple automations.
Flowcharts: Use decision nodes
and loops for complex workflows.
5.
Recording and Screen Scraping
Code
Example: Desktop Recording
Open the Recording tab.
Choose Desktop Recording.
Perform actions on your screen (clicks, typing,
etc.).
Stop recording to generate activities.
Screen
Scraping
Extract text from screens using the Screen
Scraping Wizard.
# Use Get Text activity to scrape text from an application.
6. Control
Flow
Code
Example: If/Else Decision
# Add an 'If' activity.
# Condition: myVariable > 10
# Then: Display "Value is greater than 10".
# Else: Display "Value is less than or equal to 10".
Key Concepts
If/Else: For conditional logic.
Switch: Handles multiple
conditions.
For Each: Iterate through
collections like arrays or lists.
While/Do While: Repeat logic
based on a condition.
7. Excel
Automation
Code Example: Read and Write Excel Data
# Add an 'Excel Application Scope' activity.
# Specify the Excel file path.
# Use 'Read Range' to read data into a DataTable.
# Use 'Write Range' to export the DataTable to a new sheet.
Key Concepts
Excel Activities: Automate
Excel tasks like reading/writing data, formatting, and formulas.
DataTable: Use for processing
tabular data.
8.
File and Folder Automation
Code Example: Manipulating Files
# Use 'Move File' activity to move a file to a new folder.
# Source: "C:\temp\file.txt"
# Destination: "C:\archive\file.txt"
Key Concepts
Common activities:
Create File/Folder
Copy File/Folder
Delete File/Folder
9. Data
Scraping
Code Example: Extract Table Data
Open the Data Scraping Wizard.
Select a table from a website or application.
Configure columns and preview extracted data.
Key Concepts
Extract structured data from web pages or
applications into DataTables.
10.
Orchestrator Integration
Key Concepts
UiPath Orchestrator: Manage,
schedule, and monitor automation workflows.
Steps to connect:
Configure Robot in
Orchestrator.
Copy the machine key.
Paste the machine key in UiPath Assistant.
11. Error
Handling
Code
Example: Try/Catch
# Add a 'Try Catch' activity.
# Place risky activities inside the 'Try' block.
# Use the 'Catch' block to log or handle exceptions.
Key Concepts
Try/Catch: Handles exceptions
gracefully.
Throw: Manually raise an
exception.
Retry Scope: Retry activities
until a condition is met.
12.
Debugging
Key Concepts
Use the Debug button to step
through workflows.
Tools:
Breakpoints: Pause workflow
execution at specific points.
Output Panel: View logs and
error messages.
Locals Panel: Inspect
variable values during execution.
13. Web
Automation
Code Example: Open a Browser and Interact
# Use 'Open Browser' activity.
# URL: "https://example.com"
# Use 'Type Into' to enter text into a search box.
# Use 'Click' to click the search button.
Key Concepts
Automate web-based tasks using UI automation
activities.
14. Invoke Code and Invoke Workflow
Code
Example: Invoke Code
// Example: Multiply two numbers in C#int result = a * b;
Invoke
Workflow
Reuse workflows by invoking them with arguments.
15. UI
Automation
Code
Example: Click a Button
# Use the 'Click' activity.
# Indicate the button using UI Explorer.
Key Concepts
Selectors: Identify UI elements
dynamically or statically.
Anchor Base: Automates elements
relative to another.
16. Library
Creation
Code Example: Create a Custom Library
Create a Library project in
UiPath Studio.
Add reusable workflows or components.
Publish the library to a feed.
Key Concepts
Libraries make workflows modular and reusable.
17.
Advanced Activities
Code Example: Regex for Text Extraction
# Use 'Matches' activity with pattern "\d{3}-\d{2}-\d{4}" to extract SSNs.
Key Concepts
Use advanced activities like:
Matches (Regex)
Invoke Code
Invoke Python Script
18. Git
Integration
Code Example: Version Control in UiPath
Initialize Git in the project folder.
Use Commit, Push, and
Pull options from the UiPath Studio menu.
Resolve merge conflicts manually or with tools.
19. Best
Practices
Name Activities Clearly: Use
descriptive names for activities and variables.
Use Annotations: Add comments
to workflows.
Organize Workflows: Split large
workflows into smaller, reusable components.
Error Handling: Always
implement Try/Catch for robust workflows.
Optimize Selectors: Use dynamic
selectors for reliable automation.
Linear and straightforward for simple
automations.
Best for tasks like data processing or UI
interaction.
Flowchart:
Non-linear workflows with decision-making
and branching.
Suitable for complex logic like handling
multiple decision paths.
State Machine:
Event-driven workflows with defined states
and transitions.
Ideal for processes with well-defined phases
or states, such as login workflows or approval cycles.
22. Custom
Activities
What
Are Custom Activities?
Custom activities are reusable components that
extend UiPath’s functionality.
Code Example: Creating a Custom Activity
Create a library project in UiPath Studio.
Add a workflow and publish it.
Import the library into other projects.
Using
Custom Activities
Install custom libraries via the Manage
Packages window.
Add the custom activity from the Activities
Panel.
23. Asset Management in Orchestrator
What Are
Assets?
Assets store shared variables like credentials,
URLs, or file paths for use across robots.
Steps to Use Assets in Workflows
Create assets in UiPath Orchestrator (e.g.,
credentials or strings).
Use the Get Asset or
Get Credential activity in your workflow.
Key Example:
# Use 'Get Asset' to retrieve a value stored in Orchestrator.
assetValue = Get Asset("AssetName")
24.
Logging and Monitoring
Logging with Log Message Activity
# Add a Log Message activity.
# Level: Info
# Message: "Process started successfully."
Key Concepts
Log Levels:
Trace: Fine-grained debug
details.
Info: General process
information.
Warning: Non-critical
issues.
Error: Critical failures in
the workflow.
Use Orchestrator’s Logs Panel
to monitor workflow logs.
25.
Scheduled Automation
How to Schedule Jobs in Orchestrator
Navigate to Triggers in
Orchestrator.
Create a trigger and select the process to
schedule.
Configure the schedule (e.g., daily at 9 AM).
Key Example
CRON Expressions: Use for
advanced scheduling.
0 9 * * * # Run daily at 9 AM
26. Using
Queues
What Are
Queues?
Queues store transaction data for processes,
enabling parallel execution and retry logic.
Code Example: Adding Items to a Queue
# Use 'Add Queue Item' activity to add data to a queue.
# Queue Name: "InvoiceProcessingQueue"
# Specific Content: { "InvoiceNumber": "12345", "Amount": 100 }
Processing Items from a Queue
Use Get Transaction Item to
retrieve items from the queue.
Use Set Transaction Status to
mark items as successful or failed.
27. Robot
Types
Key
Robot Types in UiPath
Attended Robots:
Run with human supervision.
Triggered manually, often used for
front-office tasks.
Unattended Robots:
Run autonomously in the background.
Used for back-office operations.
Studio Robots:
Execute workflows during development and
debugging.
Test Robots:
Designed specifically for executing
automated test cases.
28. Advanced
Selectors
What Are
Selectors?
Selectors are XML-based strings that identify UI
elements.
Key
Example: Dynamic Selectors
# Example dynamic selector with variable
"<html title='*" + PageTitle + "*' />"
Tools for Optimizing Selectors
UI Explorer: Refine and test
selectors.
Anchor Base: Use a fixed
element as a reference for dynamic elements.
29. Exception Handling Best Practices
Enhanced Exception Handling
Use Try Catch blocks for
predictable errors.
Global Exception Handler:
Automatically handles uncaught exceptions.
Configure it under the Project Panel.
Retry Logic
Use Retry Scope for actions
prone to transient errors (e.g., network issues).
30.
Credential Management
Key Concepts
Use Windows Credential Manager
for local credential storage.
Use Orchestrator Assets for
secure credential sharing.
Code
Example: Get Credentials
# Use 'Get Credential' to retrieve credentials.
username = Get Credential("MyCredential").Username
password = Get Credential("MyCredential").Password
31.
Integration with APIs
Code
Example: HTTP Request
Use the HTTP Request activity
to call APIs.
Configure:
Endpoint URL.
Headers (e.g.,
Authorization: Bearer token).
Body for POST requests.
Key Example:
# API Body Example for HTTP Request:
{
"name": "John Doe",
"email": "[email protected]"
}
32. Debugging Advanced Workflows
Advanced
Debugging Tools
Slow Step: Execute workflows
step-by-step.
Immediate Panel: Evaluate
expressions during debugging.
Highlight Elements: Visualize
UI interactions during execution.
33. Data
Manipulation
Key Concepts
String Operations:
result = inputString.ToUpper()
result = inputString.Replace("old", "new")
DataTable Operations:
Use Filter DataTable to
refine rows and columns.
Use LINQ for advanced filtering:
result = dataTable.AsEnumerable()
.Where(Function(row) row("Column1").ToString = "Value")
.CopyToDataTable()
34. Using Parallel and Parallel For Each
Parallel
Activity
Executes activities simultaneously when
independent.
# Example: Download files and log data in parallel branches.
Parallel For
Each
Iterates over collections with parallel
execution.
35.
UiPath Test Automation
Key Concepts
Create Test Cases in UiPath
Studio.
Use Data-Driven Testing with
CSV or Excel inputs.
Generate test results and logs for verification.
36. RPA Best
Practices
General
Best Practices
Reusable Components:
Create libraries for frequently used
workflows.
Error Logging:
Always log errors and warnings in workflows.
Folder Structure:
Organize workflows into folders:
Input, Output, Process, Logs.
Documentation:
Annotate workflows for clarity.
37. Key Shortcuts in UiPath Studio
Shortcut
Description
Ctrl + N
Create a new project.
Ctrl + P
Open an existing project.
F5
Run the workflow.
Ctrl + Shift + N
Add a new Sequence/Flowchart.
Ctrl + L
Open Output Panel.
Ctrl + D
Debug the workflow.
38. Common
Pitfalls
Hardcoded Values:
Avoid hardcoding paths or credentials. Use
variables or assets instead.
Inadequate Error Handling:
Ensure every workflow has proper Try/Catch
blocks.
# Use 'Merge Data Table' activity to combine two DataTables.
# DataTable1.Merge(DataTable2)
Sorting DataTable:
# Use 'Sort Data Table' activity.
# Input: DataTable, Sort Column: "ColumnName", Direction: Ascending
Group By Operations (LINQ):
# Example: Group rows by a column value.
result = dataTable.AsEnumerable()
.GroupBy(Function(row) row("Category"))
.Select(Function(g) New With {
.Key = g.Key,
.Count = g.Count()
}).ToList()
Pivot Tables:
Use LINQ or external libraries like Excel to
create pivot-like aggregations.
# Replace digits with "X".
CleanedString = Regex.Replace(InputString, "\d", "X")
42. Using
JSON and XML
Parsing JSON
Use the Deserialize JSON
activity to process JSON data.
# JSON String: {"name": "Alice", "age": 25}
# Use Deserialize JSON activity to convert it to a JObject.
Name = jsonObject("name").ToString()
Age = jsonObject("age").ToString()
Processing
XML
Use Deserialize XML activity to
handle XML data.
# Use XPath to extract nodes.
NodeValue = xmlDocument.SelectSingleNode("//NodeName").InnerText
43.
Integration with Databases
Key
Database Activities
Use the Database package
(install via Manage Packages) for SQL operations.
Code Example: Database Connection
Use Connect activity to connect
to a database.
Run queries with:
Execute Query (SELECT
statements).
Execute Non-Query (INSERT,
UPDATE, DELETE).
# Example: Execute Query to retrieve data
QueryResult = Execute Query("SELECT * FROM Users WHERE Age > 25")
44. Email
Automation
Key Email
Activities
Install UiPath.Mail.Activities
from Manage Packages.
Use activities like Send SMTP Mail
Message, Get IMAP Mail Messages, etc.
Code
Example: Reading Emails
# Use Get IMAP Mail Messages
# Server: "imap.gmail.com"
# Port: 993
# SecureConnection: True
Emails = Get IMAP Mail Messages
45.
Creating Reusable Templates
What Are
Templates?
Prebuilt project setups for faster development.
Key
Steps to Create a Template
Design a generic workflow with placeholders.
Save it as a project template via File
> Export > Save as Template.
Templates can include reusable:
Logging frameworks.
Data input/output structures.
Preconfigured workflows for settings.
46. String
Manipulations
Advanced String Operations
Split Strings:
Parts = InputString.Split(","c)
Substring:
ExtractedPart = InputString.Substring(0, 5)
String Formatting:
Result = String.Format("Name: {0}, Age: {1}", Name, Age)
Join Strings:
JoinedString = String.Join(", ", ListOfStrings)
47.
Image and PDF Automation
Key Image Automation Activities
Use Click Image or Find
Image for non-standard UI interactions.
Use Image Exists to validate UI
elements.
Key
PDF Automation Activities
Install UiPath.PDF.Activities.
Use Read PDF Text or
Read PDF with OCR to extract content.
48.
Integrating Python Scripts
Key Python
Activities
Use the Invoke Python Method
activity to integrate Python scripts.
Code Example: Running a Python Script
# Configure Python Scope with the path to Python executable.
# Use Invoke Python Method to call a function:
Result = Invoke Python Method("my_function", {"param1", "param2"})
49. Debugging
Logs
Key Debugging
Tips
Add Verbose Logs:
Log Message: "Variable X Value: " + X.ToString
Highlight Elements:
Use Highlight activity to
visualize element interactions.
Inspect Exceptions:
Enable Break on Exceptions
in Debug Mode for step-by-step debugging.
50. Advanced Scheduling Without
Orchestrator
Using
Windows Task Scheduler
Use Task Scheduler to trigger
workflows on a schedule.
Export the workflow as a .bat file.
Schedule the .bat file using Task
Scheduler.
51.
Handling Parallel Processes
Key
Activities
Use the Parallel activity to
run independent branches of workflows simultaneously.
# Example:
# Left Branch: Scraping a webpage.
# Right Branch: Logging data into Excel.
52. Error
Screenshots
Key Concepts
Use the Take Screenshot
activity to capture errors during workflow execution.
Save the screenshot locally or send via email
for debugging.
53.
Using External Libraries
Integrate
.NET Libraries
Import custom .NET DLLs via Manage
Packages.
Use Invoke Code to call .NET
functions.
54. Interactive Forms with UiPath Forms
Key Features
Create user interfaces for human intervention
using the UiPath.Form.Activities package.
Collect user input during workflows.
55.
Performance Optimization
Best
Practices
Use Invoke Workflow:
Break workflows into smaller components for
faster execution.
Minimize UI Interactions:
Use background automation
activities when possible.
Optimize Selectors:
Use wildcard selectors for dynamic elements.
56. Best Practices for Large-Scale
Projects
Folder Organization:
Use folders like Input,
Output, Logs, and Config.
Use Config Files:
Store constants in external files like JSON
or Excel.
Centralized Logging:
Route all logs to a single workflow or file.
57.
Advanced Frameworks
REFramework (Robotic Enterprise Framework)
A prebuilt framework provided by UiPath for
scalable automation.
Includes logging, exception handling, and retry
mechanisms.
58.
Additional Topics
Working with Active Directory:
Use activities like Get AD
Users for user management.
Custom Activity Development:
Develop custom activities in Visual Studio
and import them into UiPath.
59. UiPath Orchestrator: Overview
What is
Orchestrator?
UiPath Orchestrator is a web-based application
for managing and monitoring RPA workflows.
It provides tools for:
Scheduling: Automate task
execution at specified times.
Queue Management: Manage
and track work items.
Robot Management: Connect
and monitor robots.
Key
Orchestrator Components
Assets: Store reusable
configurations like credentials, file paths, or API keys.
Queues: Enable handling of
high-volume data by processing items in parallel.
Triggers: Automate workflows
based on schedules or events.
Logs: Centralized logging for
workflows and robots.
Jobs: Monitor real-time
workflow executions.
Connecting Robots to Orchestrator
Open UiPath Assistant and
navigate to Orchestrator Settings.
Paste the Machine Key and
Orchestrator URL (provided in Orchestrator).
Click Connect to establish a
link.
60. UiPath
Assistant
What is
UiPath Assistant?
A desktop application that allows you to manage
and trigger attended robots.
Provides an easy interface for users to:
Launch workflows.
Monitor robot statuses.
Connect robots to Orchestrator.
Key Features
Process Tray:
Displays available processes configured for
the robot.
Processes can be started with one click.
Settings:
Configure Orchestrator connection or local
robot behavior.
Notifications:
Displays alerts like pending tasks or
connection issues.
61. Queues in
Detail
What Are
Queues?
Queues manage high-volume workloads by splitting
them into smaller, manageable items.
Steps to Use
Queues
Create a queue in Orchestrator.
Add items to the queue using the Add
Queue Item activity.
Process queue items using Get
Transaction Item activity.
Mark items as successful or failed using
Set Transaction Status.
Code Example
# Adding Items to a Queue
Add Queue Item("InvoiceQueue", {"InvoiceID": "12345", "Amount": 500})
# Processing Items from the Queue
transactionItem = Get Transaction Item("InvoiceQueue")
62. Scheduling
Jobs
What Are
Triggers?
Triggers in Orchestrator automate job execution
based on:
Time-based schedules (e.g.,
daily at 9 AM).
Queue-based triggers (e.g.,
when a queue has new items).
Steps to
Schedule a Job
Navigate to Triggers in
Orchestrator.
Select the process and configure:
Start time.
Recurrence (CRON expressions supported).
Save the trigger.
CRON
Example:
0 9 * * * # Run daily at 9 AM
63. Advanced Orchestrator Features
Multi-Tenancy
Allows separate environments (tenants) for
different teams or departments.
Each tenant has isolated resources like robots,
queues, and logs.
Modern
Folders
Dynamically assign processes and resources to
robots.
Easier to manage multiple robots across
projects.
64. Advanced Logging and Monitoring
Orchestrator
Logs
Centralized logs accessible via the Orchestrator
interface.
Can filter by:
Process name.
Robot name.
Log level (Info, Warning, Error).
Integration with ELK Stack
Export logs to Elasticsearch, Logstash, and
Kibana for advanced visualization and monitoring.
65. Integration with External Tools
Integration with REST APIs
Orchestrator provides RESTful APIs for managing
robots, jobs, and queues.