This step allows you to interact with native HTML <select> elements on the page.

Inputs

description
string
required

Description of the select. Refer to the Locating elements guide for more information.

option
string
required

The option to select from the dropdown.

Configs

disable stability checks
boolean
default:
false

Do not wait for the element to be visible, stable and actionable before interacting. Useful for elements that are constantly animating or partially obscured.

use css selector
boolean
default:
false

Treat the element description as a CSS selector. This is not recommended for maintainability reasons but can be useful for dynamic pages.

disable caching
boolean
default:
false

Disable caching for this target. Useful for elements that should always be located dynamically, such as table rows, search results, or graph nodes that may be re-ordered.

act within iframe
string

Specify an exact URL or a regex to match the URL of the iframe in which the element is located. The provided matcher must match exactly one iframe element on the page. To provide a custom regex, use the /<regex-here>/ format.

Was this page helpful?