navigate_page
Directs the browser tab to load a specific web address for testing, automation, or navigation tasks.
Instructions
Navigate the currently selected tab to the provided URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to navigate the page to |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to navigate the page to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}