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.

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.

❌ 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, and you should use Click Web Element.

Last updated