Purpose
Use Click for buttons, links, tabs, cookie banners, load-more controls, filters, and form submissions.
How it works
- Finds the first matching element.
- Waits up to the configured timeout when provided.
- Performs a browser click, then follows the next block.
Configuration fields
| Field | Required | Default | Description |
|---|---|---|---|
| Selector | Yes | - | CSS selector or XPath for the target element. |
| Timeout | No | 10 | Maximum seconds to wait for the element before failing. |
Usage notes
- Use text-based XPath for buttons with stable labels, such as //button[contains(., 'Load more')].
- If the click changes the page, add a wait block immediately after it.
- For cookie popups, combine Element Exists with true and false branches.