A plugin for playwright-extra & puppeteer-extra to solve reCAPTCHAs and hCaptchas automatically.
Install
yarn add @extra/recaptcha
npm install @extra/recaptcha
Changelog
Support
Learn more at Playwright vs Puppeteer
Usage
The plugin essentially provides a mighty page.solveRecaptchas()
method that does everything needed automagically.
Playwright
If this is your first playwright-extra plugin here's everything you need:
yarn add playwright playwright-extra @extra/recaptcha
npm install playwright playwright-extra @extra/recaptcha
const { chromium } = require('playwright-extra')
const RecaptchaPlugin = require('@extra/recaptcha')
const RecaptchaOptions = {
visualFeedback: true,
provider: {
id: '2captcha',
token: 'XXXXXXX',
},
}
chromium.use(RecaptchaPlugin(RecaptchaOptions))
chromium.launch({ headless: true }).then(async (browser) => {
const page = await browser.newPage()
await page.goto('https://www.google.com/recaptcha/api2/demo')
await page.solveRecaptchas()
await Promise.all([
page.waitForNavigation(),
page.click(`#recaptcha-demo-submit`),
])
await page.screenshot({ path: 'response.png', fullPage: true })
await browser.close()
})
Puppeteer
If this is your first puppeteer-extra plugin here's everything you need:
yarn add puppeteer puppeteer-extra @extra/recaptcha
npm install puppeteer puppeteer-extra @extra/recaptcha
const puppeteer = require('puppeteer-extra')
const RecaptchaPlugin = require('@extra/recaptcha')
puppeteer.use(
RecaptchaPlugin({
provider: {
id: '2captcha',
token: 'XXXXXXX',
},
visualFeedback: true,
})
)
puppeteer.launch({ headless: true }).then(async (browser) => {
const page = await browser.newPage()
await page.goto('https://www.google.com/recaptcha/api2/demo')
await page.solveRecaptchas()
await Promise.all([
page.waitForNavigation(),
page.click(`#recaptcha-demo-submit`),
])
await page.screenshot({ path: 'response.png', fullPage: true })
await browser.close()
})
TypeScript usage
import puppeteer from 'puppeteer-extra'
import RecaptchaPlugin from 'puppeteer-extra-plugin-recaptcha'
puppeteer.use(
RecaptchaPlugin({
provider: {
id: '2captcha',
token: 'ENTER_YOUR_2CAPTCHA_API_KEY_HERE',
},
})
)
puppeteer.launch({ headless: false }).then(async (browser) => {
const page = await browser.newPage()
await page.goto('https://www.google.com/recaptcha/api2/demo')
await page.solveRecaptchas()
await Promise.all([
page.waitForNavigation(),
page.click(`#recaptcha-demo-submit`),
])
await page.screenshot({ path: 'response.png', fullPage: true })
await browser.close()
})
If you'd like to see debug output just run your script like so:
DEBUG=automation-extra,automation-extra-plugin:* node myscript.js
Tip: The recaptcha plugin works really well together with the stealth plugin.
Motivation 🏴
These days captchas are unfortunately everywhere, with reCAPTCHA having the biggest "market share" in that space (> 80%) and hCaptcha being a fast growing contender. The situation got really bad, with privacy minded users (tracking blocker, VPNs) being penalized heavily and having to solve a lot of reCAPTCHA challenges constantly while browsing the web.
The stated reasons for this omnipresent captcha plague vary from site owners having to protect themselves against increasingly malicious actors to some believing that we're essentially forced into free labour to train Google's various machine learning endeavours.
In any case I strongly feel that captchas in their current form have failed. They're a much bigger obstacle and annoyance to humans than to robots, which renders them useless. My anarchist contribution to this discussion is to demonstrate this absurdity, with a plugin for robots with which a single line of code is all it takes to bypass reCAPTCHAs on any site.
Provider
I thought about having the plugin solve captchas directly (e.g. using the audio challenge and speech-to-text APIs), but external solution providers are so cheap and reliable that there is really no benefit in doing that. ¯\_(ツ)_/¯
Please note: You need a provider configured for this plugin to do it's magic. If you decide to use the built-in 2captcha provider you need to add funds to your 2captcha account.
2captcha
Currently the only builtin solution provider as it's the cheapest and most reliable, from my experience. If you'd like to throw some free captcha credit my way feel free to signup here (referral link, allows me to write automated tests against their API).
- Cost: 1000 reCAPTCHAs (and hCaptchas) for 3 USD
- Delay: Solving a captcha takes between 10 to 60 seconds
- Error rate (incorrect solutions): Very rare
Q&A
How does this work?
- When summoned with
page.solveRecaptchas()
the plugin will attempt to find any active reCAPTCHAs & hCaptchas, extract their configuration, pass that on to the specified solutions provider, take the solutions and put them back into the page (triggering any callback that might be required).
How do reCAPTCHAs work?
-
reCAPTCHAs (and hCaptchas) use a per-site sitekey
. Interestingly enough the response token after solving a challenge is (currently) not tied to a specific session or IP and can be passed on to others (until they expire). This is how the external solutions provider work: They're being given a sitekey
and URL, solve the challenge and respond with a response token.
-
This plugin automates all these steps in a generic way (detecting captchas, extracting their config and sitekey
) as well as triggering the (optional) response callback the site owner might have specified.
Are ordinary image captchas supported as well?
- No. This plugin focusses on reCAPTCHAs and hCaptchas exclusively, with the benefit of being fully automatic. 🔮
What about invisible reCAPTCHAs?
- Invisible reCAPTCHAs are supported. They're basically used to compute a score of how likely the user is a bot. Based on that score the site owner can block access to resources or (most often) present the user with a reCAPTCHA challenge (which this plugin can solve). The stealth plugin might be of interest here, as it masks the usage of puppeteer.
- Technically speaking the plugin supports: reCAPTCHA v2, reCAPTCHA v3, invisible reCAPTCHA, enterprise reCAPTCHA, hCaptcha, invisible hCaptcha. All of those (any number of them) are solved when
page.solveRecaptchas()
is called.
When should I call page.solveRecaptchas()
?
- reCAPTCHAs will be solved automatically whenever they are visible (aka their "I'm not a robot" iframe in the DOM). It's your responsibility to do any required actions to trigger the captcha being shown, if needed.
- Note about the "invisible" captcha versions: They don't feature a visible checkbox but can result in an active challenge popup, which the plugin will solve instead. :-)
- If you summon the plugin immediately after navigating to a page it's got your back and will wait automatically until the captcha script (if any) has been loaded and initialized.
- If you call
page.solveRecaptchas()
on a page that has no captchas nothing bad will happen (😄) but the promise will resolve and the rest of your code executes as normal. - After solving the reCAPTCHAs the plugin will automatically detect and trigger their optional callback. This might result in forms being submitted and page navigations to occur, depending on how the site owner implemented the reCAPTCHA.
Debug
DEBUG=automation-extra,automation-extra-plugin:* node myscript.js
Fine grained control
Defaults
By default the plugin will never throw, but return any errors silently in the { error }
property of the result object. You can change that behaviour by passing throwOnError: true
to the initializier and use try/catch
blocks to catch errors.
For convenience and because it looks cool the plugin will "colorize" reCAPTCHAs depending on their state (violet = detected and being solved, green = solved). You can turn that feature off by passing visualFeedback: false
to the plugin initializer.
Result object
const { captchas, solutions, solved, error } = await page.solveRecaptchas()
captchas
is an array of captchas found in the pagesolutions
is an array of solutions returned from the providersolved
is an array of "solved" (= solution entered) captchas on the page
Manual control flow
page.solveRecaptchas()
is a convenience method that wraps the following steps:
let { captchas, error } = await page.findRecaptchas()
let { solutions, error } = await page.getRecaptchaSolutions(captchas)
let { solved, error } = await page.enterRecaptchaSolutions(solutions)
Troubleshooting
Solving captchas in iframes
By default the plugin will only solve reCAPTCHAs showing up on the immediate page. In case you encounter captchas in frames the plugin extends the Playwright.Frame
& Puppeteer.Frame
object with custom methods as well:
for (const frame of page.mainFrame().childFrames()) {
await frame.solveRecaptchas()
}
Solving captchas in pre-existing browser pages
In case you're not using browser.newPage()
but re-use the existing about:blank
tab (which is not recommended for various reasons) you will experience a page.solveRecaptchas is not a function
error, as the plugin hasn't hooked into this page yet. As a workaround you can manually add existing pages to the lifecycle methods of the plugin:
const recaptcha = RecaptchaPlugin()
const pages = await browser.pages()
for (const page in pages) {
await recaptcha.onPageCreated(page)
}
License
Copyright © 2018 - 2021, berstend̡̲̫̹̠̖͚͓̔̄̓̐̄͛̀͘. Released under the MIT License.