browse
Automate web browsing to extract page titles and visible text without detection. Specify a URL, configure headless mode, and set a wait time for optimal results.
Instructions
Browse to a URL and return the page title and visible text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headless | No | Whether to run the browser in headless mode | |
url | Yes | The URL to navigate to | |
waitFor | No | Time to wait after page load (milliseconds) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"headless": {
"default": false,
"description": "Whether to run the browser in headless mode",
"type": "boolean"
},
"url": {
"description": "The URL to navigate to",
"format": "uri",
"type": "string"
},
"waitFor": {
"default": 1000,
"description": "Time to wait after page load (milliseconds)",
"type": "number"
}
},
"required": [
"url"
],
"type": "object"
}