browser_navigate
Directs a Chrome browser to a specified URL using undetected automation, bypassing anti-bot detection mechanisms. Includes an optional timeout parameter for navigation control, ideal for web scraping and testing.
Instructions
Navigate to a URL
Args:
url: The URL to navigate to - required
timeout: The timeout for the navigation - optional, default is 30000
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"default": 30000,
"title": "Timeout",
"type": "integer"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "browser_navigateArguments",
"type": "object"
}