UiPath UiPath-ADAv1 Exam
UiPath Automation Developer Associate v1 (Page 22 )

Updated On: 1-Feb-2026

DRAG DROP (Drag and Drop is not supported)
A developer loaded an existing workflow that uses Ul Automation in Google Chrome. The Google

Chrome extension has not been installed on the developer's machine How should the developer load the Google Chrome extension from UiPath Studio?
Instructions: Drag the Description found on the left and drop on the correct Step found on the right.

  1. See Explanation section for answer.

Answer(s): A

Explanation:



The developer can load the Google Chrome extension from UiPath Studio by following these steps:
Step 1 = Navigate to Home in UiPath Studio. This is the section where you can create, open, or manage your projects.
Step 2 = Click Tools to see UiPath Extensions. This is the section where you can install or update various extensions for different applications or browsers. Step 3 = Select Chrome and then click Install. This will launch the Chrome browser and redirect you to the Chrome Web Store page for the UiPath extension.
Step 4 = Click Enable extension in the Google Chrome confirmation pop-up. This will add the UiPath extension to your browser and allow you to use UI automation activities in Chrome.



HOTSPOT (Drag and Drop is not supported)
A developer is using a Type into activity to enter details into a web form The developer notices that the selector for the text field is unreliable. The selector that is shown in the exhibit currently targets both a text label and a text field at runtime Only one additional Property needs to be clicked to ensure the selector targets only the First Name text field at runtime.

Instructions: Click the additional Property checkbox in the following Ul Explorer "Unselected Items" column that should be used for the First Name text field.

  1. See Explanation section for answer.

Answer(s): A

Explanation:



To ensure the selector targets only the First Name text field at runtime, you need to click the additional Property checkbox for ID in the UI Explorer Unselected Items column. This will add the ID attribute to the selector, which is a unique identifier for the text field element. The ID attribute has the value "firstname" for the First Name text field, as shown in the image. This will make the selector more reliable and specific, and avoid targeting the text label or other elements with the same class or tag.


Reference:

https://docs.uipath.com/de/studio/standalone/2021.10/user-guide/uipath-explorer



A developer wants to extract hidden text from a pdf file.
Which output method(s) should be used?

  1. FullText and Native
  2. Native only
  3. OCR
  4. FullText only

Answer(s): D

Explanation:

To extract hidden text from a pdf file, the output method that should be used is FullText only. The FullText output method is one of the options available in the Read PDF Text activity, which reads all the characters from a specified pdf file and stores them in a string variable.
The FullText output method extracts the text from the pdf file as it is, without keeping the formatting or the position of the text. The FullText output method can also extract the hidden text from the pdf file, which is the text that is not visible on the screen, but can be copied and pasted into another application. For example, the hidden text can be the metadata, comments, or annotations of the pdf file. The FullText output method is suitable for extracting hidden text from a pdf file, as it does not depend on the visibility or the layout of the text. The other output methods, such as Native or OCR, are not suitable for extracting hidden text from a pdf file, as they rely on the appearance or the position of the text on the screen. The Native output method preserves the formatting and the position of the text, but it cannot extract the text that is not visible or selectable. The OCR output method converts the text from the pdf file into an image and then extracts the text from the image, but it cannot extract the text that is not displayed or recognized by the OCR engine.


Reference:

Read PDF Text, Extracting Hidden Text from PDF, Native, and OCR from UiPath documentation and forum.



A developer created a datatable, dt_Users as shown in the following exhibit.



After populating the datatable variable, the developer wants to assign each User ID in dt_Users to a List<String> variable Users_List. To achieve this, the developer plans to use an Add To Collection activity inside a For Each Row activity.



How should the Item property of the Add To Collection activity be configured?

  1. CurrentRow(0)ToStnng
  2. CurrentRow(1) ToString
  3. dtJJsers(O) ToString
  4. dt_Users(1) ToString

Answer(s): A

Explanation:

To assign each User ID in dt_Users to a List<String> variable Users_List, the Item property of the Add To Collection activity should be configured as:
CurrentRow(0).ToString
This expression accesses the value of the first column (index 0) in the current row of the dt_Users datatable using the CurrentRow variable. The CurrentRow variable is a DataRow object that represents the row that is being iterated in the For Each Row activity. The expression uses the ToString method to convert the value of the User ID column to a string type. The expression returns the User ID value as a string, which is then added to the Users_List variable by the Add To Collection activity. For example, if the dt_Users datatable has the following values:
User ID Name

101 John

102 Mary

103 Bob
Then the expression CurrentRow(0).ToString will return 101, 102, and 103 as the User ID values in each iteration of the For Each Row activity, and these values will be added to the Users_List variable.


Reference:

Add To Collection and For Each Row from UiPath documentation.



A developer created an automation which scrapes data from PDF reports. The reports have the same structure and the title format is always "Report X - PDF"T where X is a number from 1 to 100. Only one report will be open at a time but other PDF files may be open on the desktop.
What is the recommended method to ensure the selector identifies the correct PDF to use?

  1. Use the * wildcard character in place of the idx attribute value
  2. Use the idx attribute value in the selector to increment for each file
  3. Use the * wildcard character in place of the title attribute value
  4. Use the * wildcard character in place of the "X" in the title attribute value

Answer(s): D

Explanation:

The recommended method to ensure the selector identifies the correct PDF to use is to use the * wildcard character in place of the "X" in the title attribute value. The * wildcard character is a symbol that can replace zero or more characters in a string. It can be used to handle dynamic elements in a selector, such as the title of a PDF file that changes for each report. For example, if the selector for the PDF file is:
<html title=`Report X - PDF' />
Then the selector can be modified as:
<html title=`Report * - PDF' />
This selector will match any PDF file that has a title starting with "Report" and ending with "PDF", regardless of the number in between. This way, the selector can identify the correct PDF file to use, even if other PDF files are open on the desktop, as long as only one report is open at a time.


Reference:

Selectors with Wildcards and Wildcards in selector from UiPath documentation and forum.



Viewing page 22 of 52
Viewing questions 106 - 110 out of 254 questions



Post your Comments and Discuss UiPath UiPath-ADAv1 exam prep with other Community members:

Join the UiPath-ADAv1 Discussion