00:00

QUESTION 71

CORRECT TEXT - (Topic 2)
In this exercise, you will create a UiPath automation that performs the steps below.
To achieve this, you will use the REFrameWork as the starting template and follow the UiPath development best practices.
Here are the steps performed by the Robot:
* 1. Log in to https://www.acme-test.com
* 2. On the landing page, Dashboard, click or hover over the Vendors menu item and then click on Search for Vendor. Click on Display All Vendors. Scrape the data from the whole table displayed. The resulting datatable will be used as the input data for the process. Navigate back to the dashboard.
Note: Navigation can be achieved in multiple ways by the robot - choose whichever you find best.
* 3. For each Tax ID:
- Navigate to Vendors - Search page (click or hover over the Vendors menu item and then click on Search for Vendor);
- Type the Tax ID into the Vendor Tax ID field;
- Click on Search;
- Extract the values for the Vendor, City and Country and compare them with the values from the previously extracted table from the Display All Vendors page (check for EXACT match for all fields!);
- If the values are not matching, this should be categorized as a Business Rule Exception;
- If the City does NOT belong to the group {""Rimini"", ""Berlin"", ""Roma"", ""Iasi"", ""Koln""}, this should be categorized as the second Business Rule Exception. We can only process requests from these cities. Check the City value extracted after the individual Tax ID search;
- If no Business Rule Exception, Append the resulting datatable from each page into an CSV file; you shouldn't worry about the headers and format of the output file.
Constraints to follow in the development, using the REFrameWork:
* 1. TransactionItem datatype should be a DataRow. The process should recover and retry 2 times in case of errors in navigation between the Vendor Search and Vendor Search
Results pages. One transaction is the action of navigating to the Vendor Search page, searching for the TaxID and scraping the values from the resulting one row table. (Similar to ACME Process 5 from the UiPath Academy).
* 2. Create a separate workflow file for the Login to ACME. File input arguments: URL ; Username ; Password .
* 3. Create a separate workflow file for closing ACME.
* 4. Add the ACME_URL and ACME_Credential to the Excel Config file.
* 5. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.
* 6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.
* 7. Populate KillAllProcesses.xaml from the Framework folder with killing the process used.
* 8. Populate the Process.xaml file with the following actions: Navigation, Searching for TaxID, Scraping, Checking if the values match, Checking for the correct City, Appending to CSV.
Important Note: Don't use external file references outside of the project folder (including Orchestrator Assets). Place all the used files within the project folder, zip that folder and upload it to the UiPath Certification Platform.
Zip ALL the used workflow files AND the output Excel file. Then upload the .zip file to the UiPath Certification Platform.
Options are : ALL THE BEST!
Solution:
Send us your feedback on this.

Does this meet the goal?

Correct Answer: A

QUESTION 72

- (Topic 3)
A developer created a project in the Robotic Enterprise (RE) Framework. The Config.xlsx has the Asset entry shown in the exhibit:
UiPath-ARDv1 dumps exhibit
Assuming the default REFramework configuration, how can the developer reference the Asset in the Config variable so that the dictionary returns the asset value as a String?

Correct Answer: C

QUESTION 73

- (Topic 2)
A developer is using UiExplorer to modify selectors. The "Highlight" button is present in UiExplorer. What is its functionality and when does this button appear?
UiPath-ARDv1 dumps exhibit

Correct Answer: B

The general Highlight button in UiExplorer brings the target element in the foreground. The highlight stays on until it's switched off. The button is enabled only if the selector is valid. Highlight button in Visual Tree panel highlights the selected element from the Visual Tree in real time. The highlight stays on until it's switched off.
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
UiPath-ARDv1 dumps exhibit

QUESTION 74

- (Topic 2)
A developer automates a project for Finance Team. As the first step, robot needs to capture ticket numbers from a Sharepoint site and then search them in SalesForce application. However, on Sharepoint all ticket numbers contain 7 characters and start with zeros e.g. 0000728, 0011430, 0003219. While in SalesForce, zeros in front are removed e.g. 728, 11430, 3219.
How can robot overcome this inconsistency?

Correct Answer: C
Explanation
TrimStart method would remove all zeroes only at the start of the ticket number (correct). Trim method would remove zeroes at the start and at the end of the ticket number (incorrect).
Replace("0") would remove zeroes from the whole string, even in the middle (incorrect). Substring(3) would work only for ticket numbers with 3 zeroes at the start (incorrect). Microsoft Documentation
UiPath Forum
Exam Topic: Identify how methods, activities, and the RegEx Builder are used for string manipulation and regular expressions

QUESTION 75

- (Topic 2)
Which of the following are considered best practices? Options are :

Correct Answer: AC