Inputs

Description
string
required

Description of the element you want to interact with.

Configs

Double click
boolean
default:false

Double click on the element.

Right click
boolean
default:false

Right click on the element.

Wait for download
boolean
default:false

Wait for the click to initiate a download and for the download to complete. A handle to the downloaded file will be returned in the step output. Files should not exceed 10MB.

Download timeout
number

Number of milliseconds to wait for a download. Defaults to 30000ms if unset.

Click delay ms
number
default:25

Number of milliseconds between each mousedown and mouseup event. Useful for UI handlers that require long presses or only listen to mousedown events.

Relative position
boolean
default:"false"

Specify where the click should occur relative to the top-left corner of the element.

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 step. 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.