browser_go
Navigate to a URL and await page load, then return the page title and any JS dialog messages. Specify a CSS selector via wait_for to handle dynamic single-page applications.
Instructions
Navigate to a URL and wait for the page to load. Returns the page title and any JS dialog messages.
PREREQUISITE: browser_open must have been called first.
For Single Page Applications (SPAs) that load content dynamically after initial page load, use wait_for to specify a CSS selector that indicates the content is ready.
Args: url: Full URL to navigate to (e.g. "https://target.com/login") session_name: Browser session to use (default: "default") tab_id: Target a specific tab (optional — uses active tab if omitted) wait_for: CSS selector to wait for after navigation (e.g. "#main-content", ".login-form"). Use for SPAs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| tab_id | No | ||
| wait_for | No | ||
| session_name | No | default |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |