Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
In Pega Robot Studio, the Credential Manager is designed to securely store user credentials (such as usernames and passwords) in an encrypted form within the user’s local profile. When properly configured, Pega Robotics can automatically log in to target applications without creating a separate automation.
From the Pega Robotics System Design and Implementation Guide (Application Configuration and Credential Management section):
“When an application requires credential-based authentication, developers can configure the application’s login controls during interrogation and assign the appropriate credential properties (Username and Password).
Once defined, credentials are stored securely in the user’s local profile and automatically retrieved and decrypted during runtime to perform the login without explicit automation logic.”
Detailed Reasoning:
During interrogation, the login controls (such as username and password fields) are identified and linked to the credential properties of the application object.
Pega Robotics automatically handles the retrieval and secure decryption of credentials stored in the local user profile at runtime.
This eliminates the need for any manual automation steps or scripts for logging in.
Option Analysis:
A. Incorrect — Robot activities are server-executed tasks, not used for local application authentication.
B. Incorrect — Credentials must be configured after interrogating target controls to map them correctly.
C. Correct — Interrogating the login fields and setting the application credential properties allows Pega Robotics to securely manage and automate login automatically.
D. Incorrect — Creating a script defeats the purpose of using the built-in credential manager.
Thus, Option C is the correct method for configuring automatic login using encrypted credentials.
[Reference:Extracted from Pega Robotics System Design and Implementation Guide, Credential Manager and Application Authentication section (Pega Robotics 19.1 and later)., , ]
Submit