Skip to content

CAPTCHA Handling

When using our fingerprint browser for data collection or automation, if the target website triggers a CAPTCHA (such as slider or human verification), you don’t need to implement complex recognition or simulation logic yourself.

Our platform integrates an automatic CAPTCHA bypass feature, exposed through custom CDP commands.

  • No third-party CAPTCHA solving service required
  • No image recognition implementation needed
  • Deep integration with browser environment for higher stability

Use the following unified CDP command:

Captchas.automaticSolver
ParameterTypeDescription
timeoutnumberMaximum wait time for CAPTCHA bypass (seconds)
solverTypestringCAPTCHA type (see mapping table below)

Captchas.automaticSolver does not guarantee success. The command may return status=false, or a message such as target page don't have verify code when the target page has no detectable verification code.

Always branch on the returned status before continuing. Treat non-success responses according to your page state and business flow instead of assuming that the CAPTCHA was solved.

result = page.run_cdp(
'Captchas.automaticSolver',
timeout=120,
solverType='tiktok_slide_simple'
)
if result.get("status", False) == True:
print("Bypass successful")
else:
print(f"Bypass not completed: {result}")
cdp_session = await page.context.new_cdp_session(page)
result = await cdp_session.send(
"Captchas.automaticSolver",
{
"timeout": 120,
"solverType": "tiktok_slide_simple"
}
)
if result.get("status", False):
print("Bypass successful")
else:
print(f"Bypass not completed: {result}")
const client = await page.target().createCDPSession()
const result = await client.send('Captchas.automaticSolver', {
timeout: 120,
solverType: 'tiktok_slide_simple',
})
if (result.status) {
console.log('Bypass successful')
} else {
console.log('Bypass not completed:', result)
}
CAPTCHA TypesolverType
Cloudflare Click CAPTCHAcloudflare
DataDome Slider CAPTCHAdatadome
Google reCAPTCHA v2google-v2
Google reCAPTCHA v3google-v3
OOCL Slider CAPTCHAoocl_slide
PerimeterX Press-and-Hold CAPTCHAperimeterx
SHEIN Image Recognition Click CAPTCHAshein_same_object_click
Temu (all CAPTCHA types)temu_auto
TikTok Slider CAPTCHAtiktok_slide_simple
TikTok Double-Spiral Slider CAPTCHAtiktok_slide_auto