get_text
Extract text content from a specific web element using a selector, enabling precise data retrieval for browser automation tasks in the Playwright MCP environment.
Instructions
Get text content from an element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | No | ||
selector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"type": "string"
},
"selector": {
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}