# Select Web Dropdown

This action selects an option in dropdown.

### Selector of Dropdown Element

Correct dropdown selector (CSS or XPath) is critical for this option to work. Your dropdown selector must have tag `select`. For dropdowns with selector tags that are not `select` (for example, `div` or `span`) use [Click Web Element](/using-zerowork/using-building-blocks/click-web-element.md).

Not all dropdowns will have `select` as their tag. Different websites implement different ways of displaying and handling dropdowns.

#### ✅ Example - valid dropdown

Works here because this dropdown has `select` as its tag.

<figure><img src="/files/AzjZ6JE0P36ax1irxPnA" alt=""><figcaption></figcaption></figure>

For this scenario, you can set up your input this way:

<figure><img src="/files/9T3p8U5RXJLWVEfvhJLx" alt=""><figcaption></figcaption></figure>

Alternatively, you can use variable or table reference, like so:

<figure><img src="/files/GpRbs3hefW6wIdUTmqpM" alt=""><figcaption></figcaption></figure>

#### ❌ Example - invalid dropdown

Won't work because this dropdown does not have `select` as its tag. In this case, 'dropdown' appears visually as a dropdown, but its selector is tagged as a button, so in reality it is a button styled as a dropdown, and you should use [Click Web Element](/using-zerowork/using-building-blocks/click-web-element.md).

<figure><img src="/files/bIOmqIIXZePsu01i8mAl" 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.zerowork.io/using-zerowork/using-building-blocks/select-web-dropdown.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.
