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)
result = page.run_cdp(
'Captchas.automaticSolver',
timeout=120,
solverType='tiktok_slide_simple'
)
if result.get("status", False) == True:
print("Bypass successful")
else:
print("Bypass failed")
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")
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')
}
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