browser_wait_for
Wait for specific text to appear, disappear, or a set time to pass during browser automation. Ensures page elements load or change as expected for accurate interactions.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}