- 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
- Variables
- Arguments
- Imported Namespaces
- Trigger-based Attended Automation
- Recording
- UI Elements
- Control Flow
- Selectors
- Object Repository
- Data Scraping
- Image and Text Automation
- Automating Citrix Technologies
- RDP Automation
- Salesforce Automation
- SAP Automation
- VMware Horizon Automation
- Logging
- The ScreenScrapeJavaSupport Tool
- The WebDriver Protocol
- Test Suite - Studio
- 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
Full versus partial selectors
Target definition in UI Automation Modern activities separates the top-level window selector from the element selector:
- Window selector - Full selector for the application window.
- Strict selector - Partial selector. A strict selector is the precise string that matches exactly one specific on-screen UI element.
- Fuzzy selector - Partial selector. A fuzzy selector allows the robot to find a UI element by using a fuzzy matching algorithm, which can identify elements even if the selector doesn't contain an exact match for the attributes.
Full selectors contain all the elements needed to identify an UI element, including the top-level window.
The top-level window is defined by a full selector that can be found in the Selector property in the Use Application/Browser scope.
Example of a full selector for the Notepad window:
Partial selectors do not contain information about the top-level window.
Activities containing partial selectors are enclosed in a container (Use Application/Browser) that defines a full selector of the top-level window.
The UI element full definition is determined by merging the Window selector with the Strict selector/Fuzzy selector.
Example of a partial selector for the editable panel in Notepad:
Selector Editor and UI Explorer display the full selector, not just the partial one. However, only the elements belonging to the partial selector can be edited, the window selector is grayed out and read-only.