browser_click
Click an element on a web page using CSS or text selectors. Optionally bypass overlays with force mode or test the target with trial mode.
Instructions
Click an element. Use force:true to bypass actionability checks when overlays block; trial:true to verify hit target without clicking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | If true, skip actionability checks (e.g. covered by overlay). | |
| trial | No | If true, perform a trial click without actually clicking. | |
| tab_id | No | Stable tab id from browser_tabs list; preferred when multiple agents run in parallel. Mutually exclusive with tab_index. | |
| timeout | No | Max wait for element in ms (Playwright default applies if omitted). | |
| selector | Yes | CSS selector or text selector (e.g. "text=Submit"). | |
| tab_index | No | Tab index from browser_tabs list. If omitted, uses the lowest-index tab. Mutually exclusive with tab_id. |