browser_get_element_text
Extract text content from a specified HTML element using a selector and instance ID within a concurrent browser environment. Supports custom timeouts for reliable results.
Instructions
Get element text content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceId | Yes | Instance ID | |
selector | Yes | Element selector | |
timeout | No | Timeout in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"instanceId": {
"description": "Instance ID",
"type": "string"
},
"selector": {
"description": "Element selector",
"type": "string"
},
"timeout": {
"default": 30000,
"description": "Timeout in milliseconds",
"type": "number"
}
},
"required": [
"instanceId",
"selector"
],
"type": "object"
}