- Release Notes
- Getting Started
- Setup and Configuration
- Automation Projects
- Dependencies
- Types of Workflows
- File Comparison
- Automation Best Practices
- Source Control Integration
- Debugging
- The Diagnostic Tool
- Workflow Analyzer
- About Workflow Analyzer
- ST-NMG-001 - Variables Naming Convention
- ST-NMG-002 - Arguments Naming Convention
- ST-NMG-004 - Display Name Duplication
- ST-NMG-005 - Variable Overrides Variable
- ST-NMG-006 - Variable Overrides Argument
- ST-NMG-008 - Variable Length Exceeded
- ST-NMG-009 - Prefix Datatable Variables
- ST-NMG-011 - Prefix Datatable Arguments
- ST-NMG-012 - Argument Default Values
- ST-NMG-016 - Argument Length Exceeded
- ST-DBP-002 - High Arguments Count
- ST-DBP-003 - Empty Catch Block
- ST-DBP-007 - Multiple Flowchart Layers
- ST-DBP-020 - Undefined Output Properties
- ST-DBP-023 - Empty Workflow
- ST-DBP-024 - Persistence Activity Check
- ST-DBP-025 - Variables Serialization Prerequisite
- ST-DBP-026 - Delay Activity Usage
- ST-DBP-027 - Persistence Best Practice
- ST-DBP-028 - Arguments Serialization Prerequisite
- ST-USG-005 - Hardcoded Activity Arguments
- ST-USG-009 - Unused Variables
- ST-USG-010 - Unused Dependencies
- ST-USG-014 - Package Restrictions
- ST-USG-020 - Minimum Log Messages
- ST-USG-024 - Unused Saved for Later
- ST-USG-025 - Saved Value Misuse
- ST-USG-026 - Activity Restrictions
- ST-USG-027 - Required Packages
- ST-USG-028 - Restrict Invoke File Templates
- Variables
- Arguments
- Imported Namespaces
- Recording
- UI Elements
- Control Flow
- Selectors
- Object Repository
- Data Scraping
- Image and Text Automation
- Citrix Technologies Automation
- RDP Automation
- Salesforce Automation
- SAP Automation
- VMware Horizon Automation
- Logging
- The ScreenScrapeJavaSupport Tool
- The WebDriver Protocol
- Studio testing
- Extensions
- Troubleshooting
- About troubleshooting
- Microsoft App-V support and limitations
- Internet Explorer X64 troubleshooting
- Microsoft Office issues
- Identifying UI elements in PDF with Accessibility options
- Repairing Active Accessibility support
- JxBrowser applications troubleshooting
- User Events Monitoring
- Citrix Troubleshooting
- Automating Applications Running Under a Different Windows User

Studio User Guide
Creating a Basic Process
linkThis tutorial teaches you how to create a basic process in Studio in 10 minutes and run it on your machine. The example opens a browser, loads a certain web page, scrapes information, and writes it to the Output panel, and in a Notepad file.
-
Launch Studio. In the HOME Backstage view, click Process to create a new
project. The New Blank Process window is displayed.
-
In the New Blank Process window:
-
Enter a name for the new project and a description that summaries what you are aiming to do with this automation project.
Note: The project name cannot exceed 128 characters, and the description cannot exceed 500 characters. - Select the location where to create the project.
-
Select Windows - Legacy for the Compatibility option and VB for Language.
-
- Click Create. The new project is opened in Studio.
- Open Internet Explorer and navigate to https://www.uipath.com/product/studio. You can use any supported browser, but make sure the required UiPath extension is installed.
- In the Activities panel, search for Use Application/Browser and drag it to the Designer panel. Notice that the activity is automatically added inside a Sequence.
-
In Use Application/Browser, click Indicate application to automate,
and then move the mouse pointer to the browser page you just opened. When
the window is highlighted, click anywhere in the browser page.
The Use Application/Browser activity is updated, the URL is added to the Browser URL field, and a screenshot of the window appears inside the activity.
- From the Activities panel, add a Get Text activity to the Do container of the Use Application/Browser activity. Click Indicate in IE, and click on the text that you want to scrape from the previously loaded web page.
-
In the
Variables
panel, create a new
string
variable calledGetText
, and set its scope toSequence
. The purpose of this variable is to store the scraped information.
-
In the Get Text activity, insert the
GetText
variable in the Save to field. -
From the Activities panel, drag a
Write Line
activity. In the input text field, add the previously created
variable. This activity writes the scraped data to the Output
panel.
-
Add another Use Application/Browser activity to the project. Open a
Notepad instance, click Indicate application to automate, and then
move the mouse pointer to the Notepad window you just opened. When the
window is highlighted, click anywhere inside it.
The Use Application/Browser activity is updated, the path is added to the Application path field, and a screenshot of the window appears inside the activity.
-
Add a
Type Into
activity in the Use Application/Browser activity’s Do
container. Click Indicate in App to select the Notepad window, and
add the
GetText
variable to the Type this field. This activity writes the scraped text to a Notepad window.
- In the ribbon, click Run File or use the Ctrl + F6 shortcut to execute the project.
When the execution is completed, notice that the scraped text is written to the Output panel, and in the Notepad file.
Similarly, you can create other processes to scrape data from web pages, using the Table Extraction wizard.