A developer wants to use the Dispatcher and Performer architecture.
What describes the characteristics of a Dispatcher and a Performer process?
Answer : A
Which of the following statements related to Orchestrator are true?
Options are :
Answer : B, C
An RPA developer needs to perform a code review on a process to ensure best practices were used. During the code review, the developer discovers that the workflows cannot be easily tested and some refactoring of the code is required.
Based on best practices, which approach is recommended?
Answer : D
A developer was reviewing an Orchestration process whose "main" attribute is set to Main.xaml in project.json.
However, the process is not pausing as intended. What is a possible cause for this issue?
Answer : A
What is the relation between environments and provisioned robots?
Options are :
Answer : A, C
While automating an installation wizard, a pop-up window may or may not appear. What can you use to close the window without stopping the workflow?
Options are :
Answer : A, B
Please choose thecorrectstatement about selectors in UiPath.
Answer : D
When a selector is built, the Case-Sensitive property makes it possible to identify elements by also taking into consideration the casing of an attribute's value.
In order to enable identification of attributes by casing, the case-sensitive() attribute needs to be included in the selector, in the tag of the target attribute:
casesensitive:
Enables you to validate a selector by also including an attribute's value casing.By default, the value of this option is set to true. If set to false, the casing of the attribute's value is not taken into account.
Example:
The following selector will be recognized by UI Explorer:
<html app='chrome.exe' title='Case-Sensitive Selectors'/>
If capital letters are changed to lowercase, UI Explorer will not recognize this selector:
<html app='chrome.exe' title='case-sensitive selectors'/>
However, you can set to ignore case sensitivity of the title attribute in the following way:
<html app='chrome.exe' title='case-sensitive selectors' casesensitive:title='false' />
UiPath Documentation
Exam Topic:Describe how Tags and Attributes, Dynamic Selectors, Anchor Base, etc. are used in UI Explorer to create a robust selector in the Default, Active Accessibility, or UI Automation frameworks