Verify all value
This is a pre-built action available under the Captured Dropdown Element from the Desktop Application. The functionality of this action in Avo Assure is to verify if all the user provided input values are present in the dropdown and save the result in dynamic variable.
Syntax
Input Value: <value1>;<value2>;...etc
<value1>;<value2>;..etc
(Required)
Specify the text values to verify their existence in the dropdown list.
Note: Each text value must be separated using a semicolon (;).
Supported input formats:
Array format: (e.g., {value[0]};{value[1]})
Text format: (e.g., Last Month)
Numeric format: (e.g., 4)
Output Value:
<Dynamic Variable>(Optional);<Dynamic Variable>(Optional)
This dynamic variable holds the status of the action as True or False.
Example 1
Verifies all specified values exist in the dropdown list
The Verify All Value action takes the value from the Input Value column (e.g., All;Last Month;Last 3 Months;Last 6 Months) and compares it against the complete list of items present in the dropdown element.The result of the verification is stored in the {VerifyAll} variable as Ture (if the dropdown contains exactly the same values as specified) or False (if there is any mismatch)

Example 2
Verifies all specified values exist in the dropdown list using array format
Once the complete list of options is captured with Get All Values and stored in the {Get All} variable, you can pass those items to the next scenario by indexing the array (e.g., {Get All[0]}; {Get All[1]}).
The Verify All Value action takes the value from the Input Value column in array format (e.g.,{Get All[0]};{Get All[1]};{Get All[2]};{Get All[3]}) and checks whether every values exists in the dropdown element. The result of the verification is stored in the {Verify} variable as Ture (if the dropdown contains exactly the same values as specified) or False (if there is any mismatch)

Last updated
Was this helpful?