navigate_to_url
Navigate to different URLs within the same browser session while preserving cookies, authentication state, and session data. Enables moving between website sections like from login to chat pages with configurable page load strategies.
Instructions
Navigate to a different URL within the same browser session. Maintains all cookies, authentication state, and session data. Useful for moving between different sections of a website (e.g., from login page to chat page, or from homepage to a specific conversation URL). Supports different wait strategies for page load completion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Session ID obtained from initialize_session | |
url | Yes | Complete URL to navigate to (e.g., 'https://chat.example.com/conversation/new') | |
waitUntil | No | Page load strategy: 'load' (wait for load event), 'domcontentloaded' (wait for DOM ready), 'networkidle' (wait for network to be idle). Use 'networkidle' for SPAs (default: 'load') | load |