Skip to content

The simplest way to bypass Google reCAPTCHA V3 using Python Selenium without paying, saving you money.

License

Notifications You must be signed in to change notification settings

FaustRen/bypass_recaptcha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bypass reCAPTCHA

bypass google recaptcha with python selenium without paying

As demonstrated in the demo GIF below, the program will add two Chrome extensions in the Chrome options:

Click the square box to the left of the "I'm not a robot" text Start bypassing the verification The bypass process will begin whenever you visit a webpage with Google verification.

Usage

If you can not open driver with 'webdriver_manager', you can use example.2, setting driver path by yourself.


# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
import selenium


## example.1 Auto setting driver path
# url = "https://testrecaptcha.github.io/"
# chrome_options = webdriver.ChromeOptions()
# chrome_options.add_extension("./crx_folder/auto_recaptcha_solver.crx")
# chrome_options.add_extension("./crx_folder/recaptcha_autoclick.crx")
# driver = selenium.webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()), options=chrome_options)
# driver.get(url)


# example.2 Setting driver path by yourself
url = "https://testrecaptcha.github.io/"
chrome_options = webdriver.ChromeOptions()
chrome_options.add_extension("./crx_folder/auto_recaptcha_solver.crx")
chrome_options.add_extension("./crx_folder/recaptcha_autoclick.crx")
driver_path = "please setting your driver path"
svc = ChromeService(driver_path)
driver = webdriver.Chrome(service=svc,options=chrome_options)
driver.get(url)

image

Requirements

selenium
webdriver_manager

About

The simplest way to bypass Google reCAPTCHA V3 using Python Selenium without paying, saving you money.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages