session_navigate
Navigate a tab to a URL inside the user's authenticated session, so pages behind a login load as the signed-in user. Reuses the active tab unless a new tab is requested.
Instructions
Navigate a tab to a URL inside the user's authenticated session, so pages behind a login load as themselves rather than as a signed-out visitor. Reuses the active tab unless newTab is true. Returns {navigated} with the requested URL, and newTab when a tab was created. It returns once navigation is dispatched, not once the page has settled — follow it with session_wait before reading.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL to navigate to, including the scheme | |
| tabId | No | Tab id from session_list_tabs; uses the active tab when omitted | |
| newTab | No | Open in a new tab instead of reusing the active tab (default false) |