0

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?

Captha picture

    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)
An Ri
  • 406
  • 5
  • 13

1 Answers1

1

This is a known issue.
You literally CAN NOT bypass captcha with selenium.
See here more about it

Prophet
  • 32,350
  • 22
  • 54
  • 79