page.captcha.detect

View as Markdown

page.captcha.detect 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.detect
  • Async: Yes

HTTP Surface

  • Transport: workspace.execute(...)
  • Call: page.captcha.detect
  • Long-running: No

Reference Semantics

  • Requires refs: page

Arguments

ArgumentTypeRequiredDescription
optionsobjectNoOptional captcha type filters.

Result

  • Type: CaptchaDetectResult
  • Description: Detected captcha types on the active page.

SDK Example

1await runtime.captcha.detect();

HTTP Example

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