When I want to login in google account using selenuim, captha is showing up. I use user-agent but it doesn't help. Can someone help me, please?
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
options.add_argument("user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36")
driver = webdriver.Chrome("chromedriver", options=options)
wait = WebDriverWait(driver, 60)