clikta_click
Click a browser element and log it as a recording step. Locate by ARIA role, text, or CSS selector; confirm destructive actions.
Instructions
Click an element in the active recording's browser and log it as a step. Locate the element with role(+name), text, or selector — role/text are more resilient than raw CSS. Refuses to click elements that look destructive (delete, payment, purchase confirmation, unsubscribe, ...) unless confirm:true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Accessible name to match, used together with `role`. | |
| role | No | ARIA role, e.g. 'button', 'link', 'textbox'. Best paired with `name`. | |
| text | No | Visible text to match, when the role isn't known. | |
| confirm | No | Set true to proceed when the target looks like a destructive/irreversible action | |
| selector | No | Raw CSS selector, as a last resort. |