puppeteer-recaptcha-bypass

1.0.1 • Public • Published

Puppeteer-Recaptcha-Bypass

Solving recaptcha with puppeteer

Requirements :

install

npm install puppeteer-recaptcha-bypass

example :

const puppeteer = require("puppeteer");
const Solver = require("puppeteer-recaptcha-bypass");

(async () => {
  const browser = await puppeteer.launch({
    headless: false,
    args: [
      "--window-position=000,000",
      "--no-sandbox",
      "--disable-dev-shm-usage",
      "--disable-web-security",
      "--disable-features=IsolateOrigins",
      " --disable-site-isolation-trials",
    ],
  });
  const page = await browser.newPage();
  await page.goto("https://www.google.com/recaptcha/api2/demo");

  const apiKey = "WIT.AI API KEY";
  const captchaResponse = await Solver(page, apiKey);

  console.log("Solved CAPTCHA:", captchaResponse);

  await browser.close();
})();

the arguments

 "--disable-dev-shm-usage",
"--disable-web-security",
 "--disable-features=IsolateOrigins",
" --disable-site-isolation-trials",

is neccesary , you must include them

Package Sidebar

Install

npm i puppeteer-recaptcha-bypass

Weekly Downloads

9

Version

1.0.1

License

ISC

Unpacked Size

6.33 kB

Total Files

6

Last publish

Collaborators

  • fdcicyber