browser_navigate
Navigate to a specified URL and wait for the page to load using Playwright MCP Server, enabling automation of web tasks like navigation, HTML extraction, and screenshots.
Instructions
Navigate to a specified URL and wait for page load
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | ||
waitUntil | No | domcontentloaded |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"format": "uri",
"type": "string"
},
"waitUntil": {
"default": "domcontentloaded",
"enum": [
"networkidle",
"domcontentloaded",
"load"
],
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}