- (Topic 2)
When should the "Add Log Fields" activity be used? Options are :
Correct Answer:
B
- (Topic 2)
In the UiPath Robotic Enterprise Framework template, in the Get Transaction Data state of the Main workflow, what happens before the next transaction item is retrieved?
Options are :
Correct Answer:
C
- (Topic 2)
What tags are verified in Internet Explorer to assess if an application is in the Interactive or Complete state?
Correct Answer:
D
To assess if an application is in the Interactive or Complete state, the following tags are verified:
* 1. Desktop applications - A wm_null message is sent to check the existence of the <wnd>, <ctrl>, <java>, or <uia> tags. If they exist, the activity is executed.
* 2. Web applications:
* a. Internet Explorer - The <webctrl> tag is used to check if the Ready state of HTML document is set to Complete. Additionally, the Busy state has to be set to "False".
* b. Others - The <webctrl> tag is used to check if the Ready state of the HT document is Complete.
* 3. SAP applications - First the presence of the <wnd> tag verified, after which a SAP specific API is used to detect if the session is busy or not.
UiPath Documentation Exam Topic:
Describe the use of various Classic UI synchronization activities; for example, ElementExists, FindElement, and FindText
- (Topic 2)
Please select the incorrect statement about partial selectors.
Correct Answer:
D
Partial selectors are generated by the Desktop recorder. They contain information about the top-level window and are enclosed in Attach Window or Attach Browser activities. It is recommended to use partial selectors when performing multiple actions in the same window.
UiPath Documentation
Exam Topic: Describe the differences between using full selectors versus using partial selectors
- (Topic 3)
A developer has two collections containing data:
1) A list of strings called listA that was initialized with 2 items
2) An array of strings called arrayB that was initialized with 2 items
How can both collections be combined into a single 4-item collection called results?
Correct Answer:
C