scraping_browser_get_html
Extract HTML content from web pages for data collection and analysis, with options for full-page capture when script tags are needed.
Instructions
Get the HTML content of the current page. Avoid using the full_page option unless it is important to see things like script tags since this can be large
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full_page | No | Whether to get the full page HTML including head and script tags Avoid this if you only need the extra HTML, since it can be quite large |
Input Schema (JSON Schema)
{
"properties": {
"full_page": {
"description": "Whether to get the full page HTML including head and script tags\nAvoid this if you only need the extra HTML, since it can be quite large",
"type": "boolean"
}
},
"type": "object"
}