File size: 1,262 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | {
"name": "browser_click",
"description": "Perform click on a web page",
"inputSchema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"element": {
"description": "Human-readable element description used to obtain permission to interact with the element",
"type": "string"
},
"target": {
"type": "string",
"description": "Exact target element reference from the page snapshot, or a unique element selector"
},
"doubleClick": {
"description": "Whether to perform a double click instead of a single click",
"type": "boolean"
},
"button": {
"description": "Button to click, defaults to left",
"type": "string",
"enum": [
"left",
"right",
"middle"
]
},
"modifiers": {
"description": "Modifier keys to press",
"type": "array",
"items": {
"type": "string",
"enum": [
"Alt",
"Control",
"ControlOrMeta",
"Meta",
"Shift"
]
}
}
},
"required": [
"target"
],
"additionalProperties": false
}
} |