browser_navigate
Navigate to specified URLs to prepare web pages for automated screenshot capture, testing, or monitoring purposes.
Instructions
Navigate to a URL
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to navigate to | |
| waitUntil | No | When to consider navigation complete | networkidle2 |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to navigate to",
"type": "string"
},
"waitUntil": {
"default": "networkidle2",
"description": "When to consider navigation complete",
"enum": [
"load",
"domcontentloaded",
"networkidle0",
"networkidle2"
],
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}