1
Hello, good evening, I am trying to develop a python web bot, using the library Selenium and webdrive_manager, but when I try to log in to my google account using the browser that the bot is operating, it returns me an error saying that it was not possible to login by the browser not to be safe. Can anyone help me? Follow the error and the code below:
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
browser = webdriver.Chrome(ChromeDriverManager().install())
browser.get('https://classroom.google.com/u/0/h')
I do not know if it is some Google defense mechanism or some problem with the code, I thank you already!! there is, and out of curiosity, the bot would be to access the online classes automatically, so we need to log in to this account
There’s some restrictions to log in to Google.
– Augusto Vasques