browser_navigate
Navigate web browsers to specified URLs for automated testing, data extraction, and web interaction workflows using Selenium WebDriver.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to navigate to |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}