Fix `Error: Failed to add page binding with name ___pepr_cs: window['___pepr_cs'] already exists!#897
Open
codynguyen wants to merge 1 commit intoberstend:masterfrom
Conversation
…___pepr_cs'] already exists!` When page.solveRecaptchas() is called multiple times, an error is thrown ``` Error: Failed to add page binding with name ___pepr_cs: window['___pepr_cs'] already exists! ``` In my test I use puppeteer@14.4.1 with its default Chrome, puppeteer-extra@3.3.4 and puppeteer-extra-plugin-recaptcha@3.6.8. I haven't tried other versions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When page.solveRecaptchas() is called multiple times, an error is thrown
Note this error only happens when debug is enabled, because the problem is in the very function that enables debug in the browser.
Why we need to call `page.solveRecaptchas() multiple times?
I know we do support multiple recaptchas that are on the same page. However in some websites, there are multiple recaptchas that are on different pages (let's say one that pops up in the login form, and then another that pops up in the 2FA form). Example: https://shakepay.com/.
In my test I use
puppeteer@14.4.1with its default Chrome,puppeteer-extra@3.3.4and the latestpuppeteer-extra-plugin-recaptcha@3.6.8. I haven't tried other versions of puppeteer or extra, but this is a problem within the recaptcha plugin and I believe it happens to all puppeteer/extra versions.