browser.navigate
Navigate the active browser tab to a specified URL for automated testing, navigation workflows, or page redirection. Requires a connected Chrome extension.
Instructions
Navigates the current active browser tab to a new URL. Use for automated testing, navigation flows, or redirecting to specific pages. Requires Chrome extension to be connected.
Route Reference: ROUTES_FILE_PATH variable is not set so make sure you know the routes to use
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to navigate to (must be a valid URL including protocol, e.g., 'https://example.com') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to navigate to (must be a valid URL including protocol, e.g., 'https://example.com')",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}