1.0.1 • Published 7 months ago

puppeteer-recaptcha-bypass v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

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