getElementContent
Extract HTML or text content from a specific web element using a CSS selector. Ideal for web scraping and data extraction in automated browser tasks.
Instructions
Get the HTML and text content of a specific element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}