waitForText
Monitor and pause automation until specific text appears on a webpage using PlayMCP Browser Automation Server. Set a timeout to control waiting duration.
Instructions
Wait for specific text to appear on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | ||
timeout | No | Timeout in milliseconds (default: 30000) |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"type": "string"
},
"timeout": {
"description": "Timeout in milliseconds (default: 30000)",
"type": "number"
}
},
"required": [
"text"
],
"type": "object"
}