solve_and_continue
Solve a CAPTCHA on a blocked page in place, then return the content behind it. Use when web_fetch reports a captcha block and the page content is the goal.
Instructions
Solve the captcha on a blocked page in place and return the page behind it. The right choice whenever the goal is the content: solve_turnstile, solve_recaptcha_v2 and solve_hcaptcha return a bare token bound to the session and address that produced it, which rarely works elsewhere. Use after web_fetch returns blocked_reason with a captcha widget. Non-interactive widgets clear on their own; one that needs a person opens a visible window or the dashboard (URL in web_status).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The blocked page. The challenge is solved on this very page, not a copy of it. | |
| profile | No | Profile whose cookies to reuse and update. Defaults to the domain's automatic profile. | |
| timeout_s | No | Seconds to wait for the challenge to clear. Default 120. | |
| extraction | No | Extraction for the unblocked page: markdown (default), text, html. | |
| max_tokens | No | Cap on the content returned, as in web_fetch. Default 25000. |