CodingButter/Recaptchevade

CAPTCHAFORUM

Administrator
1634286661861.png
node module to solve Google Recaptchas with 2captcha

Sample usage
Code:
const puppeteer = require("puppeteer-core")
const config = require("./Config.json")
const solveCaptcha = require("recaptchevade")(config.TWO_CAPTCHA_KEY)
const browserOptions = {
  headless: false,
}(async () => {
  const browser = await puppeteer.launch(browserOptions)
  const page = await browser.newPage()
  await page.goto("https://www.google.com/recaptcha/api2/demo")
  await solveCaptcha(page, null, async (response) => {
    document.querySelectore("#recaptcha-demo-submit").click()
  })
})()

Documentation https://githubmemory.com/repo/CodingButter/Recaptchevade