| { | |
| "name": "browser_select_option", | |
| "description": "Select an option in a dropdown", | |
| "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" | |
| }, | |
| "values": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| }, | |
| "description": "Array of values to select in the dropdown. This can be a single value or multiple values." | |
| } | |
| }, | |
| "required": [ | |
| "target", | |
| "values" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |