UiPath-ADAv1 無料問題集「UiPath Automation Developer Associate v1」
You want to identify a selector in a Type into activity that will be used for a text input field within an application. In order for the Type into activity to execute as expected, how many elements in an application can a selector be valid for at runtime?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
What is the correct sequence of steps to install a new Activities package in UiPath Studio 2021 10?
Instructions:
Drag the Description found on the left and drop on the correct Step found on the right.
Instructions:
Drag the Description found on the left and drop on the correct Step found on the right.
正解:
Explanation:
Click, Manage Packages
In the Manage Packages window, click Save
Search and Install the desired package
Click, All Packages
The correct sequence of steps to install a new Activities package in UiPath Studio 2021 10 is:
Click Manage Packages in the ribbon.
In the Manage Packages window, click All Packages in the left panel.
Search for the desired package in the search box and select it from the list.
Click Install and then Save to complete the installation.
Comprehensive and Detailed Explanation: To install a new Activities package in UiPath Studio 2021 10, you need to follow these steps:
Click Manage Packages in the ribbon. This will open the Manage Packages window, where you can browse, install, update, or remove packages from your project.
In the Manage Packages window, click All Packages in the left panel. This will display all the available packages from the official UiPath feed, as well as any other feeds that you have configured in the Settings tab.
Search for the desired package in the search box and select it from the list. You can also filter the packages by category, compatibility, or source. You can see the package details, such as version, description, dependencies, and release notes, in the right panel.
Click Install and then Save to complete the installation. The package will be added to your project dependencies and downloaded to the local cache. You can also choose to install a specific version of the package by clicking on the version number and selecting from the drop-down list.
References:
Managing Packages
Installing and Updating Packages
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.
Instructions: Click the additional Property checkbox in the following Ul Explorer "Unselected Items" column that should be used for the First Name text field.
正解:
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.
https://docs.uipath.com/de/studio/standalone/2021.10/user-guide/uipath-explorer
How should the computation of the signature be done for client apps that receive Orchestrator requests and need to check their authenticity?
Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the right.
Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the right.
正解:
Explanation:
A screenshot of a computer Description automatically generated
The correct sequence for the computation of the signature for client apps that receive Orchestrator requests and need to check their authenticity is:
Retrieve the X-UiPath-Signature HTTP header. This header contains the signature of the request body, encoded in Base64. (UiPath Orchestrator documentation1) To obtain the raw signature bytes, decode the value of the header from Base64. You can use any tool or library that supports Base64 decoding. (UiPath Orchestrator documentation1) Compute the hash using SHA256 and the signing key (UTF-8 encoded). The signing key is a secret value that is shared between Orchestrator and the client app. You can use any tool or library that supports SHA256 hashing. (UiPath Orchestrator documentation1) Compare the computed signature to the value from X-UiPath-Signature HTTP header. If they match, then the request is authentic and has not been tampered with. If they do not match, then the request is invalid and should be rejected. (UiPath Orchestrator documentation1) References:
1: Webhooks - UiPath Orchestrator.