Puppeteer

Puppeteer CAPTCHA Solver

Solve reCAPTCHA, Turnstile, and image CAPTCHAs in your Puppeteer scripts with a local AI solver, unlimited solves, one flat price.

  • Unlimited solving
  • Local and private
  • 90-100% accuracy
  • One flat price

When headless Chrome hits a reCAPTCHA checkbox, an invisible v3 score gate, or a Cloudflare Turnstile page, your Puppeteer script stalls. CapSkip is a Puppeteer CAPTCHA solver that runs locally on your own Windows machine or VPS, giving you unlimited high-speed solves on a flat monthly plan instead of paying a remote service per 1,000 solves.

CapSkip solves the CAPTCHA types that block Puppeteer automation: image CAPTCHA across thousands of variants, reCAPTCHA v2 checkbox, invisible and callback, reCAPTCHA v3 score and action, reCAPTCHA v2/v3 Enterprise, Cloudflare Turnstile widget and full challenge page, and GeeTest v3 slide puzzles, all at 90-100% accuracy. Local solving keeps challenge data on your own machine rather than routing it to a third-party human farm.

For Node.js, install the CapSkip SDK (npm install capskip), or if you already use puppeteer-extra-plugin-recaptcha with a 2Captcha or Anti-Captcha provider, point that client at CapSkip's local HTTP API, which is drop-in compatible, so you keep your Puppeteer code the same.

No coding required. Run the CapSkip app and the browser extension connects automatically, then solves CAPTCHAs right in the page. Already using another service? Migrating is easy: CapSkip is a drop-in captcha solver that emulates 2Captcha, RuCaptcha, Anti-Captcha, CapMonster Cloud, CapSolver, DeathByCaptcha, SolveCaptcha and Captchas.io. Add your service to the hosts file in the CapSkip app and your existing code is routed to CapSkip and solved locally, with no changes.

Why CapSkip is the best Puppeteer CAPTCHA solver

Unlimited solving, flat price

One flat price: a one-time $99 lifetime license plus a low monthly subscription from $10/mo. No credits to top up, no per-solve billing, no throttling.

Fast, high-volume solving

Image CAPTCHAs clear in about 0.1 seconds, while reCAPTCHA, Turnstile and GeeTest usually solve within a few seconds, with unlimited threads.

90-100% accuracy

High success rates on real, live challenges, plus free model training the moment a new CAPTCHA type shows up.

Local and private

CapSkip solves on your own machine or VPS. Challenge data never leaves for a third-party human-solving farm.

API emulation

A local HTTP API that emulates 2Captcha, Anti-Captcha, CapSolver and more. Point your code at CapSkip and keep the rest.

Extension + SDKs

A no-code browser extension for Chrome and Firefox, plus official Python, Node.js, PHP and C# SDKs for automation.

Three ways to solve CAPTCHAs in Puppeteer

JavaScript
const puppeteer = require('puppeteer');
const { CapSkip } = require('capskip');

const solver = new CapSkip({ host: '127.0.0.1', port: 8080 });

(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  await page.goto('https://example.com/login');

  const sitekey = await page.$eval('.g-recaptcha', el => el.dataset.sitekey);
  const { code } = await solver.recaptcha(sitekey, page.url());

  await page.evaluate(t => {
    document.getElementById('g-recaptcha-response').innerHTML = t;
  }, code);
  await page.click('button[type=submit]');
})();

Solve reCAPTCHA & Turnstile in Puppeteer with the CapSkip Node SDK.

No-code browser extension

Install the CapSkip extension and it detects the widget on any page and solves it for you, with nothing to script.

Official SDKs

Automate solving from your own code with the Python, Node.js, PHP and C# clients. A few lines returns a valid token.

Local HTTP API

Prefer raw HTTP? CapSkip exposes a local endpoint with 2Captcha and Anti-Captcha API emulation, so any HTTP client works.

See it work on a real challenge

We host live, interactive demo pages for every CAPTCHA type. Load the real widget, run CapSkip, and watch the token come back.

How to solve CAPTCHAs in Puppeteer with CapSkip

  1. 1

    Install CapSkip

    Download the desktop app for Windows (or run it on a VPS) and launch it. The local solver starts automatically.

  2. 2

    Sign in to the app

    Buy the $1 trial or a Bronze / Silver / Gold license and your login details arrive by email straight away, with the license live the moment you pay. Sign in to the app with them and you are ready to solve. The setup guide walks through it.

  3. 3

    Solve automatically

    Use the browser extension for no-code solving, or call the SDK / HTTP API from your automation.

CapSkip vs 2Captcha & API services

FeatureCapSkip2Captcha & API services
Pricing modelFlat unlimited monthly (from $10/mo), plus a $99 one-time lifetime licensePer-1,000-solve credits, cost grows with volume
Where solving runsLocally on your own Windows PC or VPSRemote API / human farm
Node.js integrationnpm install capskip, extension, or local APIAPI key + puppeteer-extra plugin, per-call billing
Works with puppeteer-extra pluginYes, point it at CapSkip via API emulationPlugin calls their paid API
Image CAPTCHA speed~0.1s per solve, no round-tripQueue + network latency per solve
ConcurrencyUnlimited threads for parallel instancesConcurrency caps or extra cost
PrivacyChallenge data stays on your machineChallenge data sent to third party

Simple licenses, unlimited solving

Pay once for a lifetime license, then a low monthly subscription. Every plan unlocks unlimited solving for every CAPTCHA type, with no per-CAPTCHA fees, ever.

Bronze

$99 one-time, then

$10 / month

Unlimited solving

1-device license

Unlimited high-speed solves and unlimited threads on a single machine.

Subscribe now

Gold

$99 one-time, then

$20 / month

Unlimited solving

3-device license

Maximum scale: unlimited solves and unlimited threads across three machines.

Subscribe now

Just want to try it first?

Start with a 7-day trial for $1 and solve 1,000 CAPTCHAs of any type on your own targets.

Start the $1 trial

Every paid license includes

  • Unlimited high-speed solving, with no per-CAPTCHA fees
  • Unlimited threads for high-volume automation
  • Solves reCAPTCHA, Turnstile, GeeTest and image CAPTCHAs
  • 90% to 100% recognition accuracy
  • Emulates 2Captcha, Anti-Captcha, CapSolver and more
  • No coding required, plus a developer-friendly API
  • Browser extension for Chrome and Firefox included
  • Instant license activation and free new-CAPTCHA training

Not sure which tier fits? Compare them on the pricing page or read the FAQ.

How to solve CAPTCHAs in Puppeteer

The simplest no-code route is to launch Puppeteer with the CapSkip Chrome extension loaded so it auto-detects and solves reCAPTCHA and Turnstile widgets in the page, then fires the callback, no token wiring needed. For scripted control, install the CapSkip Node.js SDK (npm install capskip), pass the page URL and sitekey to get a token, and inject it into the challenge your Puppeteer script controls. If you already run puppeteer-extra-plugin-recaptcha against 2Captcha, run CapSkip's local API with 2Captcha, Anti-Captcha, CapMonster, CapSolver and DeathByCaptcha emulation, pairing it with puppeteer-extra-plugin-stealth for evasion while CapSkip does the solve, unlimited, at a flat rate.

Frequently asked questions

How do I solve a CAPTCHA in Puppeteer?
Load the CapSkip browser extension in Puppeteer to auto-solve reCAPTCHA and Turnstile widgets in-page, or install the Node SDK (npm install capskip), fetch a token from the page URL and sitekey, and inject it into the form.
Can Puppeteer bypass reCAPTCHA v2 and v3?
Puppeteer cannot solve reCAPTCHA by itself, but CapSkip solves v2 checkbox, invisible and callback, plus v3 score and action, returning a token your Puppeteer script submits.
Does CapSkip replace puppeteer-extra-plugin-recaptcha?
You can keep the plugin and point its 2Captcha/Anti-Captcha provider at CapSkip's local API via API emulation, or use the CapSkip Node SDK or extension directly. Either way you get unlimited flat-rate solves.
Can CapSkip bypass Cloudflare Turnstile in Puppeteer?
Yes. CapSkip solves both the Turnstile widget and the full Turnstile challenge page, so Puppeteer can pass Cloudflare-protected pages.
How much does a Puppeteer CAPTCHA solver cost?
CapSkip is flat unlimited: Bronze $10/mo (1 device), Silver $15/mo (2 devices), Gold $20/mo (3 devices), plus a $99 one-time lifetime license, all unlimited, versus per-1,000-solve API pricing.
Is CapSkip compatible with my existing 2Captcha Puppeteer setup?
Yes. CapSkip's local API emulates the 2Captcha and Anti-Captcha APIs, so your Puppeteer solving code works with no code changes.
How fast does CapSkip solve in Puppeteer?
Image CAPTCHAs solve in about 0.1 seconds because solving runs locally on your machine, with unlimited threads so parallel Puppeteer instances aren't throttled.
Is local CAPTCHA solving more private for Puppeteer scraping?
Yes. CapSkip solves on your own Windows machine or VPS, so challenge data is never sent to a third-party human farm, keeping your Puppeteer automation private.

Ready to solve CAPTCHAs in Puppeteer?

Download CapSkip, activate a license, and solve unlimited CAPTCHAs from your browser or your code. One flat price, no per-solve billing.