export_page
Export a webpage and its resources for offline use or analysis. Specify a URL, headers, and optional best-attempt mode to capture content efficiently through browser automation.
Instructions
Export webpage with resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bestAttempt | No | ||
headers | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bestAttempt": {
"type": "boolean"
},
"headers": {
"type": "object"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}