A powerful automation tool for solving Google reCAPTCHA challenges using Playwright and Puppeteer. This package intelligently detects and simulates human-like interactions, including mouse movements and precise clicks, to bypass reCAPTCHA v2 and other sim
npm install clicks-recaptcha-solverA powerful automation tool designed to solve Google reCAPTCHA challenges effortlessly using Playwright and Puppeteer. This package simulates human-like interactions, including mouse movements and precise clicks, to bypass reCAPTCHA v2 and similar challenges. Ideal for automation workflows, web scraping, and bot-driven tasks.
---
ā
Fully automated Google reCAPTCHA v2 solver
ā
Works with Playwright & Puppeteer
ā
Simulates realistic human interactions
ā
Lightweight and easy to integrate
ā
Perfect for web scraping and automation
---
Install the package using npm:
``sh`
npm install clicks-recaptcha-solver
---
Using Playwright to solve a reCAPTCHA:
`javascript
const { captchaSolver } = require('clicks-recaptcha-solver');
const { chromium } = require('playwright');
(async () => {
const browser = await chromium.launch({ headless: false });
const page = await browser.newPage();
await page.goto('https://www.google.com/recaptcha/api2/demo');
await captchaSolver(page, TwoCaptchaApiKey);
console.log('ā reCAPTCHA solved successfully!');
await browser.close();
})();
`
---
- page: An instance of a Playwright or Puppeteer page.
- Returns: A Promise that resolves when the reCAPTCHA is successfully solved.
---
To improve discoverability, add the following keywords in your package.json:
`json``
"keywords": [
"recaptcha",
"recaptcha-solver",
"captcha-bypass",
"puppeteer-recaptcha",
"playwright-captcha",
"automation",
"web scraping"
]
---
This project is licensed under the ISC License.
---
- š GitHub Repository
- š Issue Tracker
---
š Speed up your automation with Clicks reCAPTCHA Solver!