*** title: page.captcha.solve description: Attempt to solve a supported captcha on the active page. --------------------------------------------------------------------- `page.captcha.solve` is a browser runtime capability in the `captcha` namespace. ## Availability * Runtime: `browser` * Kind: `raw` * Category: `interaction` * Supported drivers: Playwright, Puppeteer, Stagehand ## SDK Surface * SDK path: `runtime.captcha.solve` * Async: Yes ## HTTP Surface * Transport: `workspace.execute(...)` * Call: `page.captcha.solve` * Long-running: No ## Reference Semantics * Requires refs: `page` ## Arguments | Argument | Type | Required | Description | | --------- | -------- | -------- | --------------------------------------------------------- | | `options` | `object` | No | Optional captcha solve settings, including explicit type. | ## Result * Type: `CaptchaSolveResult` * Description: Solve result for the active page captcha. ## SDK Example ```ts await runtime.captcha.solve(); ``` ## HTTP Example ```json { "runtime": "crm", "steps": [ { "call": "page.captcha.solve" } ] } ``` ## Related Capabilities * [`page.captcha.detect`](../interaction/page-captcha-detect) * [`browserUse.agent.execute`](../agents/browser-use-agent-execute)