get_content
Extract rendered HTML content from any webpage by specifying a URL. Optionally wait for specific selectors or JavaScript functions to execute before retrieving the content.
Instructions
Extract rendered HTML content from a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | ||
waitForFunction | No | ||
waitForSelector | No |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"type": "string"
},
"waitForFunction": {
"properties": {
"fn": {
"type": "string"
},
"timeout": {
"type": "number"
}
},
"type": "object"
},
"waitForSelector": {
"properties": {
"selector": {
"type": "string"
},
"timeout": {
"type": "number"
}
},
"type": "object"
}
},
"required": [
"url"
],
"type": "object"
}