verifyAllValues
This is a pre-built Action located under the captured dropdown element. The functionality of this action in Avo Assure is to verify all input values against the available dropdown values. The result is stored in the given dynamic variable for further use during test execution.
Syntax
Input Value: <text1>;<text2>;..etc.
<text1>;<text2>;..etc. (Required)
Provide the first value which you want to verify.
Provide the second value which you want to verify.
Note: Each text value must be separated using a semicolon (;).
Output Value: <Dynamic Variable>(Optional);<Dynamic Variable>(Optional)
<Dynamic Variable>(Optional);<Dynamic Variable> (Optional)
Both dynamic variables store the status as True or False.
Example: Verifying All Expected Values in a Dropdown or List
In this example, we explain how to verify that all expected values are present in the target dropdown or list element.
Action: verifyAllValues
Input Value: All;Last Month;Last 3 Months
The first argument (All) specifies the first expected value to be validated.
The second argument (Last Month) specifies the next expected value that should be present in the list.
The third argument (Last 3 Months) specifies another value that must be available in the dropdown.
Output Value: {Status}
The verification result is stored in the {Status} dynamic variable with the following possible values:
True: If all specified values are found successfully.
False: If all specified values are not found successfully.
Logical Explanation: The verifyAllValues action reads all expected values from the Input Value column (All; Last Month; Last 3 Months). The action verifies the target dropdown or list element to check whether each expected value exists. It validates every entry individually to ensure complete accuracy. The result of the verification (True) is stored in the {Status} variable.

Last updated
Was this helpful?