pilot_navigate
Navigate the browser to a URL and get confirmation with HTTP status, content preview, and interactive elements after the page loads.
Instructions
Navigate the browser to a URL and wait for DOM content to load. Use when the user wants to go to a specific webpage, URL, or link.
For read tasks ("go to X and tell me Y"), prefer pilot_get — it returns full readable content + interactive elements in one call, eliminating a follow-up snapshot call.
Parameters:
url: The URL to navigate to (e.g., "https://example.com" or relative paths)
Returns: Confirmation message with the HTTP status code, content preview, and interactive elements.
Errors:
"Invalid URL": The URL format is malformed. Provide a complete URL including the protocol.
Timeout (15s): The page took too long to load. Try pilot_navigate again or check the URL.
"Navigation denied": The URL was rejected by security validation (e.g., file:// on restricted origins).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to navigate to (e.g., "https://example.com") |