puppeteer-recaptcha-bypass
v1.0.1
Published
Solving recaptcha with puppeteer
Downloads
18
Readme
Puppeteer-Recaptcha-Bypass
Solving recaptcha with puppeteer
Requirements :
- puppeteer latest version
- wit.ai api key ( get in https://wit.ai/ )
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