navigate
Automate web page navigation by directing browsers to specified URLs with options to wait for full page loads, powered by AutoProbeMCP's browser automation framework.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to navigate to | |
waitForLoad | No | Wait for page to fully load |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to navigate to",
"type": "string"
},
"waitForLoad": {
"default": true,
"description": "Wait for page to fully load",
"type": "boolean"
}
},
"required": [
"url"
],
"type": "object"
}