playwright_navigate
Automate browser navigation to a specified URL using Playwright MCP Server. Configure browser type, viewport size, timeout, and headless mode for precise web interaction.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browserType | No | Browser type to use (chromium, firefox, webkit). Defaults to chromium | |
headless | No | Run browser in headless mode (default: false) | |
height | No | Viewport height in pixels (default: 720) | |
timeout | No | Navigation timeout in milliseconds | |
url | Yes | URL to navigate to the website specified | |
waitUntil | No | Navigation wait condition | |
width | No | Viewport width in pixels (default: 1280) |
Input Schema (JSON Schema)
{
"properties": {
"browserType": {
"description": "Browser type to use (chromium, firefox, webkit). Defaults to chromium",
"enum": [
"chromium",
"firefox",
"webkit"
],
"type": "string"
},
"headless": {
"description": "Run browser in headless mode (default: false)",
"type": "boolean"
},
"height": {
"description": "Viewport height in pixels (default: 720)",
"type": "number"
},
"timeout": {
"description": "Navigation timeout in milliseconds",
"type": "number"
},
"url": {
"description": "URL to navigate to the website specified",
"type": "string"
},
"waitUntil": {
"description": "Navigation wait condition",
"type": "string"
},
"width": {
"description": "Viewport width in pixels (default: 1280)",
"type": "number"
}
},
"required": [
"url"
],
"type": "object"
}