browser_click
Execute precise single, double, or button-specific clicks on web elements using structured accessibility snapshots, enabling browser automation without visual models.
Instructions
Perform click on a web page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
button | No | Button to click, defaults to left | |
doubleClick | No | Whether to perform a double click instead of a single click | |
element | Yes | Human-readable element description used to obtain permission to interact with the element | |
ref | Yes | Exact target element reference from the page snapshot |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"button": {
"description": "Button to click, defaults to left",
"enum": [
"left",
"right",
"middle"
],
"type": "string"
},
"doubleClick": {
"description": "Whether to perform a double click instead of a single click",
"type": "boolean"
},
"element": {
"description": "Human-readable element description used to obtain permission to interact with the element",
"type": "string"
},
"ref": {
"description": "Exact target element reference from the page snapshot",
"type": "string"
}
},
"required": [
"element",
"ref"
],
"type": "object"
}