question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to skip Google recaptcha in puppeteer?

See original GitHub issue

So I am trying to access https://my.outbrain.com/login URL and whenever I enter the login and press enter, it shows Google ReCaptcha: Screenshot 2019-12-03 at 1 23 19 PM

How can I skip or bypass this ReCaptcha?

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:8

github_iconTop GitHub Comments

3reactions
andreabisellocommented, Dec 3, 2019

@vyomsrivastava try forcing user agent


browser = await puppeteer.launch()
page = await browser.newPage()
await page.setUserAgent('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36')


0reactions
stale[bot]commented, Jul 25, 2022

We are closing this issue. If the issue still persists in the latest version of Puppeteer, please reopen the issue and update the description. We will try our best to accomodate it!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Bypassing CAPTCHAs with Headless Chrome using puppeteer
4 Answers 4 · Enable stealth mode (via puppeteer-extra-plugin-stealth) · Randomize User-agent or Set a valid one (via random-useragent) · Randomize ...
Read more >
How to bypass Gmail captcha using Puppeteer and Node.js
type('input[type="password"]', process.env.password); // Password login await page.waitForSelector("#passwordNext", { visible: true }); await ...
Read more >
Bypassing CAPTCHAs with Headless Chrome - Jarrod Overson
Using 2Captcha and Puppeteer to automate through CAPTCHAs ... If you don't score above Google's human threshold then reCAPTCHA falls back to a...
Read more >
puppeteer-extra-plugin-recaptcha - npm
A puppeteer-extra plugin to solve reCAPTCHAs and hCaptchas automatically.. Latest version: 3.6.6, last published: 6 months ago.
Read more >
Bypassing Recaptcha V2 with NodeJS and Puppeteer
You've learned how to bypass a form with Recaptcha V2 in it's simplest implementation way - with "g-recaptcha-response" textarea as part of the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found