navigate
Direct the browser to a specified URL using Autoconsent MCP, enabling precise navigation for testing and interacting with web pages within an automation framework.
Instructions
Navigate to any URL in the browser
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"
}