browse_to
Extract HTML content from any webpage by navigating to a specified URL using a headless browser interface. This tool simplifies web data retrieval for analysis or processing.
Instructions
Navigate to a specific URL and return the page's HTML content.
Args:
url: The full URL to navigate to
context: Optional context object for logging (ignored)
Returns:
The full HTML content of the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "browse_toArguments",
"type": "object"
}