page.captcha.solve

View as Markdown

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

ArgumentTypeRequiredDescription
optionsobjectNoOptional captcha solve settings, including explicit type.

Result

  • Type: CaptchaSolveResult
  • Description: Solve result for the active page captcha.

SDK Example

1await runtime.captcha.solve();

HTTP Example

1{
2 "runtime": "crm",
3 "steps": [
4 {
5 "call": "page.captcha.solve"
6 }
7 ]
8}