| { | |
| "name": "browser_wait_for", | |
| "description": "Wait for text to appear or disappear or a specified time to pass", | |
| "inputSchema": { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "type": "object", | |
| "properties": { | |
| "time": { | |
| "description": "The time to wait in seconds", | |
| "type": "number" | |
| }, | |
| "text": { | |
| "description": "The text to wait for", | |
| "type": "string" | |
| }, | |
| "textGone": { | |
| "description": "The text to wait for to disappear", | |
| "type": "string" | |
| } | |
| }, | |
| "additionalProperties": false | |
| } | |
| } |