studio
2022.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
- 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
- ST-USG-032 - Required Tags
- ST-USG-034 - Automation Hub URL
- 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
- Automating Applications Running Under a Different Windows User
- Validation of large Windows-legacy projects takes longer than expected

Studio User Guide
Last updated Sep 3, 2025
Example of RDP Automation
linkTo illustrate native RDP support, we created an automation process which interacts with a web browser, navigates to a particular page, scrapes text, and saves it in an existing text file which is on a folder on the remote machine's desktop. For the sake of this example, we use Internet Explorer as our web browser and Notepad to save the scraped text.
- On the Remote Desktop machine, open Internet Explorer.
- In a new Blank Process, add an Open Application activity.
- Click Indicate on screen and select the Internet Explorer instance.
- In the Do container, add a Type Into activity. Use Indicate on screen to select the browser address field. Ideally, enable the ClickBeforeTyping option.
- In the Text property, write
"https://en.wikipedia.org/wiki/Main_Page"
(between quotes). - Add a Click activity below and indicate the right arrow button of the address bar. This brings you to the specified web page.
- Add another Type Into activity. Use Indicate on screen to select the search field inside the web page.
- Set the Text property to
"UiPath"
(between quotes). - Add a Click activity below and indicate the magnifying glass button next to the search field. This brings up the UiPath page in Wikipedia.
- Use the Screen Scraping wizard to scrape the text you want. In this case, we scrape the entire History section.
- When you're satisfied with the selected text, click the Finish button. A Screen Scraping container is added below the Open Application container. Inside, you find a Do container with a Get Full Text activity. A new P generic value variable is created which holds the scraped text.
- From the Variables panel, change the scope of the P variable to sequence, so that it can be used later on.
- (Optional) Add a Close Application activity below the Screen Scraping container. Use Indicate on screen to select Internet Explorer.
- Add two Double Click activities.14.1. Configure the first one to double click the
Data
folder on the desktop to open it.14.2. Configure the second one to double click theOutput.txt
file inside theData
folder. - Add a Type Into activity. Use Indicate on screen to select the editable text space inside the
Output.txt
file. - Set the Text property to
P
(without quotes). This pastes the scraped text, which is contained in the variable, inside theOutput.txt
file. - (Optional) Add a Send Hotkey activity and set the key combination to Ctrl + S. This is done to save the file. Ideally, enable the ClickBeforeTyping option to ensure Notepad is in focus when the hotkey command is sent.
- (Optional) Add a Close Application activity and use Indicate on screen to select Notepad.
- Press F5 to run the process. Notice how Internet Explorer is opened, navigates to Wikipedia, scrapes the History category
from the UiPath page, and pastes it inside a text file from a desktop folder.