playwright_navigate
Navigate to a specified URL with configurable wait conditions and timeout, aiding in AI vision-driven UI analysis for the AI Vision Debug MCP Server.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | Navigation timeout in milliseconds | |
url | Yes | URL to navigate to | |
waitUntil | No | Navigation wait condition |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"description": "Navigation timeout in milliseconds",
"optional": true,
"type": "number"
},
"url": {
"description": "URL to navigate to",
"type": "string"
},
"waitUntil": {
"description": "Navigation wait condition",
"enum": [
"load",
"domcontentloaded",
"networkidle",
"commit"
],
"optional": true,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}