navigate
Direct a browser to a specified URL for automation tasks, enabling precise control over web navigation within Playwright MCP's browser automation framework.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}