verifyWebImages
This is a pre-built Action located under the captured image element. The functionality of this action in Avo Assure is to compare an image captured from the application with the reference image provided in the input path. The result is stored in the given dynamic variable for further use during test execution..
Syntax
Input Value: <image path>
<image path>
(Required)
Provide the path of the image which you want to compare with the captured image.
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: Verifying Similarity Between Captured and Reference Images
In this example, we explain how to verify whether the currently captured image from the web page matches the reference image path provided in the input.
Action: VerifyWebImages
Input Value: C:\Users\John.smith\test\sample.png
The first argument (C:\Users\John.smith\test\sample.png) specifies the file path of the reference image stored in the local system.
Output Value: {Status}
The result of the image comparison is stored in the {Status} dynamic variable with the following possible values:
True: If the comparison is successfully.
False: If the comparison is not successfully.
Logical Explanation: The VerifyWebImages action reads the reference image path from the Input Value column (C:\Users\John.smith\test\sample.png). The action captures the current image from the web page during test execution and compares it with the provided reference image. Based on the similarity between both images, the action determines the final status of the verification. The result of this comparison (True) is stored in the {Status} variable.

Last updated
Was this helpful?