navigate_to
Open or refresh a web page by directing the browser to a specified URL. Requires prior browser launch for Chrome automation.
Instructions
Navigate to a URL in the browser. Use this to open web pages or refresh the current page. The browser must be launched first using launch_browser.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to navigate to (e.g., 'https://example.com'). Must be a valid HTTP/HTTPS URL. | |
| sessionId | No | Optional. Session ID to operate on. If not provided, uses the default session. Use the session ID returned by launch_browser. | default |
| waitUntil | No | When to consider navigation complete. 'load' (default) waits for load event - most reliable for most pages. 'domcontentloaded' waits for DOMContentLoaded - faster but may miss some resources. 'networkidle' waits until network is idle - may timeout on pages with continuous network activity (WebSocket, polling, analytics). | load |