studio
2020.10
false
- 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
- Variables
- Arguments
- Imported Namespaces
- Recording
- UI Elements
- Control Flow
- Selectors
- Object Repository
- Data Scraping
- Image and Text Automation
- Automating Citrix Technologies
- RDP Automation
- SAP Automation
- VMware Horizon Automation
- Logging
- The ScaleCoordinates Migration Tool
- The ScreenScrapeJavaSupport Tool
- The WebDriver Protocol
- StudioPro
- Extensions
- Troubleshooting

OUT OF SUPPORT
Studio User Guide
Last updated Dec 20, 2023
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.
Check out the video or follow the steps detailed below:
-
Launch Studio. In the HOME Backstage view, click Process to create a new
project. The New Blank Process window is displayed.
-
Type a name for the new project and a description that summaries what you are
aiming to do with this automation project. Pick a location for the new project.
Note: The project name cannot exceed 128 characters, and the description cannot exceed 500 characters.
- Click Create. The new project is opened in Studio.
- In the Activities panel, search for Open Browser and drag it to the Designer panel. Notice that the activity is automatically added inside a Sequence.
- Add the
"https://www.uipath.com/product/studio"
URL in the Open Browser input field. Use Ctrl + S or click Save on the ribbon, and then press Ctrl + F6 to run the process. The aforementioned web page is opened in Internet Explorer. - From the Activities
panel, add a Get Visible
Text activity to the Do container of the Open
Browser activity. Click Indicate element inside browser, 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 Visible Text
activity Properties panel, select the field next to the Text
property, and insert the
GetText
variable.
- From the Activities panel, drag a Write stepne activity. In the input text field, add the previously created variable. This activity writes the scraped data to the Output panel.
- Add an Open Appstepcation activity to the project. Open a Notepad instance, click Indicate window on screen and select the opened appstepcation. Notepad’s file path is detected.
- Add a Type Into
activity in the Open Appstepcation activity’s Do container.
Click Indicate element inside window to select the Notepad window,
and add the
GetText
variable to the input text 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 Data Scraping wizard.