# 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.`

| Argument                                      | Description                                                                                                                                                                                             |
| --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p>\<text1>;\<text2>;..etc.<br>(Required)</p> | <p>Provide the first value which you want to verify.</p><p>Provide the second value which you want to verify.</p><p><strong>Note</strong>: Each text value must be separated using a semicolon (;).</p> |

{% hint style="info" %}
**Note**: You must provide all the values available in the dropdown. If any value is omitted, the action returns false.
{% endhint %}

**Output Value**: `<Dynamic Variable>(Optional);<Dynamic Variable>(Optional)`

| Argument                                                     | Description                                                       |
| ------------------------------------------------------------ | ----------------------------------------------------------------- |
| \<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.

<figure><img src="/files/3PbSkoiMxw8n3rwlGC4t" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.avoautomation.com/avo-assure/actions/web/dropdown/verifyallvalues.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
