browser_wait_for
Pause web automation until specific text appears or disappears, or a set time elapses, ensuring precise control during browser interactions via Selenium WebDriver.
Instructions
Wait for text to appear or disappear or a specified time to pass
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | No | The text to wait for | |
textGone | No | The text to wait for to disappear | |
time | No | The time to wait in seconds |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text to wait for",
"type": "string"
},
"textGone": {
"description": "The text to wait for to disappear",
"type": "string"
},
"time": {
"description": "The time to wait in seconds",
"type": "number"
}
},
"type": "object"
}