navigate
Loads a webpage completely by navigating to a specified URL, waiting for the page to fully render before proceeding with debugging tasks.
Instructions
Navega para uma URL específica e carrega a página completamente
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Timeout em milissegundos (padrão: 30000) | |
| url | Yes | URL completa para navegar (deve incluir http:// ou https://) | |
| waitUntil | No | Condição de espera (padrão: networkidle2) | networkidle2 |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"default": 30000,
"description": "Timeout em milissegundos (padrão: 30000)",
"type": "number"
},
"url": {
"description": "URL completa para navegar (deve incluir http:// ou https://)",
"type": "string"
},
"waitUntil": {
"default": "networkidle2",
"description": "Condição de espera (padrão: networkidle2)",
"enum": [
"load",
"domcontentloaded",
"networkidle0",
"networkidle2"
],
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}