Navigate to Page with Authentication
This is a pre-built Action located under the @Browser Element. The functionality of this Action in Avo Assure is to open the given URL and log in using the Username and Password provided in the Input Value column. The result is stored in a dynamic variable for further use during test execution.
Syntax
Input Value: <URL>;<UserName>;<EncryptedPassword>
<URL> (Required)
Provide the web address of the application to access.
<UserName> (Required)
Provide the username to log into the application.
<EncryptedPassword> (Required)
Provide the encrypted password for secure login.
Output Value: <Dynamic Variable>(Optional);<Dynamic Variable>(Optional)
<Dynamic Variable>(Optional);<Dynamic Variable>(Optional)
Both dynamic variable stores the status as True or False.
Example: Navigating to a Secured Web Page Using Authentication Credentials
In this example, we explain how to navigate to a secured web page that requires authentication using the Navigate to Page with Authentication action.
Action: Navigate to Page with Authentication
Input Value: https://example.com;admin;iPh64rgJnD4sSbVyDKqRWw==
The URL (https://example.com) specifies the secured web page to be accessed.
The username (admin) defines the login credential used for authentication.
The Encrypted Password (iPh64rgJnD4sSbVyDKqRWw==) provides the encoded password for secure access.
Output Value: {Navigate}
The result of the navigation is stored in this {Navigate} dynamic variable with the following possible values:
True: If the page is accessed successfully using valid credentials.
False: If the authentication fails or an error occurs during navigation.
Logical Explanation: The Navigate to Page with Authentication action takes the value from the Input Value column (https://example.com;admin;iPh64rgJnD4sSbVyDKqRWw== ) and attempts to access the specified URL using the provided username and encrypted password. If the authentication is successful, the result of the operation is stored in the {NavigateToPage} variable as true.

Authentication Website Example:

Last updated
Was this helpful?