browse_session_navigate
Navigate an existing browsing session to a specified URL with controls for content extraction, wait conditions, and CAPTCHA handling.
Instructions
Navigate an existing browser session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to navigate to. Must be a fully qualified http or https URL. | |
| timeout | No | Optional timeout override for this navigation. | |
| maxChars | No | Maximum text or HTML characters to return. | |
| selector | No | Optional CSS selector to limit extraction. | |
| sessionId | Yes | Session ID returned by browse_session_start. | |
| outputMode | No | Response content mode. | text |
| waitStrategy | No | Optional wait strategy override for this navigation. | |
| captchaPolicy | No | Challenge handling policy. 'detect' reports signals, 'pause' returns state for human action, 'fail' returns an error, 'attempt' returns enhanced challenge metadata, interactive elements, a bounded screenshot, and a suggested strategy. When CAPTCHA_AUTONOMOUS=true, responses are marked for LLM-assisted handling and include provider-specific challengePlaybook context when known. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| html | No | ||
| text | No | ||
| title | No | ||
| status | No | ||
| message | No | ||
| maxChars | Yes | ||
| selector | No | ||
| expiresAt | Yes | ||
| sessionId | Yes | ||
| truncated | Yes | ||
| outputMode | Yes | ||
| contentType | No | ||
| diagnostics | No | ||
| challengeType | No | ||
| selectorFound | No | ||
| captchaIframes | No | ||
| captchaDetected | No | ||
| challengeSignals | No | ||
| challengeHandling | No | ||
| challengePlaybook | No | ||
| challengeProvider | No | ||
| suggestedStrategy | No | ||
| requiresUserAction | No | ||
| interactiveElements | No |