CAPTCHA Handling
CAPTCHA Bypass Service
Section titled “CAPTCHA Bypass Service”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.
Key Advantages
Section titled “Key Advantages”- No third-party CAPTCHA solving service required
- No image recognition implementation needed
- Deep integration with browser environment for higher stability
Universal Calling Method
Section titled “Universal Calling Method”Use the following unified CDP command:
Captchas.automaticSolverParameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| timeout | number | Maximum wait time for CAPTCHA bypass (seconds) |
| solverType | string | CAPTCHA type (see mapping table below) |
Framework Examples
Section titled “Framework Examples”DrissionPage (Python)
Section titled “DrissionPage (Python)”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")Playwright (Python)
Section titled “Playwright (Python)”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")Puppeteer (Node.js)
Section titled “Puppeteer (Node.js)”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 Type Mapping
Section titled “CAPTCHA Type Mapping”| CAPTCHA Type | solverType |
|---|---|
| Cloudflare Click CAPTCHA | cloudflare |
| DataDome Slider CAPTCHA | datadome |
| Google reCAPTCHA v2 | google-v2 |
| Google reCAPTCHA v3 | google-v3 |
| OOCL Slider CAPTCHA | oocl_slide |
| PerimeterX Press-and-Hold CAPTCHA | perimeterx |
| SHEIN Image Recognition Click CAPTCHA | shein_same_object_click |
| Temu (all CAPTCHA types) | temu_auto |
| TikTok Slider CAPTCHA | tiktok_slide_simple |
| TikTok Double-Spiral Slider CAPTCHA | tiktok_slide_auto |