wait_for_element
Pause execution until a specific element appears in the Firefox browser, using a selector and optional timeout for efficient automation and debugging workflows.
Instructions
Wait for element to appear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | ||
tabId | No | ||
timeout | No |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"type": "string"
},
"tabId": {
"type": "string"
},
"timeout": {
"default": 30000,
"type": "number"
}
},
"required": [
"selector"
],
"type": "object"
}