browser_navigate
Directs a web browser to a specified URL using Selenium WebDriver, enabling automation of tasks like web testing, scraping, and form submissions.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to navigate to |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}