fromseleniumimportwebdriverfromselenium_utilitiesimportgetChromeDriverfrombyerecaptchaimportsolveRecaptchaoptions=webdriver.ChromeOptions()options.add_argument('--lang=en-US')#need for recaptcha be in englishdriver=webdriver.Chrome(executable_path=getChromeDriver(),chrome_options=options)driver.get('https://www.google.com/recaptcha/api2/demo')solveRecaptcha(driver)#FOR PREDICTION ON YOUR PCsolveRecaptcha(driver,server="https://myserver.com")#FOR PREDICTION IN YOUR SERVER (check server.py)solveRecaptcha(driver,invisible=True)#FOR PREDICTION INVISIBLE CAPTCHA