Xewdy444 / Playwright-reCAPTCHA

A Python library for solving reCAPTCHA v2 and v3 with Playwright
https://pypi.org/project/playwright-recaptcha/
MIT License
242 stars 34 forks source link

Help #92

Open bthecs opened 5 months ago

bthecs commented 5 months ago

It does not detect the recaptcha of the following page https://www.pureminutes.com/mobile-recharge I do not know how to solve it.

Xewdy444 commented 5 months ago

This page is using a reCAPTCHA v3 that is triggered when you enter a country and phone number and click the "RECHARGE NOW" button. If you are simply using Playwright to perform all of the actions on this page, you will not need playwright-recaptcha. If you are trying to retrieve the reCAPTCHA token to use elsewhere, you will need to use the reCAPTCHA v3 solver and perform the actions mentioned above. If needed, be sure to abort any requests that the browser makes that contain the token, otherwise the token will be invalid when you try to use it somewhere else. Here is an example of how to abort requests: https://playwright.dev/python/docs/network#abort-requests.