无法在此浏览器或应用中对您进行签名可能不安全(python硒chrome 78)

时间:2019-12-10 23:45:38

标签: python-3.x selenium selenium-chromedriver

首先,我正在尝试制作自动登录的代码。

我转到以下网站:https://accounts.google.com/signin/v2/identifier?flowName=GlifWebSignIn&flowEntry=ServiceLogin

然后我将自动执行登录过程。 我的程序提交密码表后,我收到错误消息:无法对此进行登录,浏览器或应用程序可能不安全。

出现错误后,我尝试刷新屏幕。

我有点困惑,因为如果我尝试使用其他帐户尝试它,则可以使用,但是该帐户不能使用。

我正在使用Chrome 78.0.3904.108
Python 3.7
我正在使用https

此处的代码:

def bot():
driver = webdriver.Chrome("C:\\Users\\rafae.SUPERIOR\\Documents\\Python Scripts\\signin\\chromedriver.exe")
driver.get('https://accounts.google.com/servicelogin')
#this is the email login form
driver.find_element_by_id('identifierId').send_keys(userlist[0])
userlist.remove(userlist[0])
#clicks the next button
driver.find_element_by_id('identifierNext').click()
time.sleep(2)
#this is the password form
driver.find_element_by_xpath("//input[@name='password']").send_keys(passlist[0])
passlist.remove(passlist[0])
#clicks next after typing in the password (the error arises here)
driver.find_element_by_id("passwordNext").click()

此处的图片:https://i.stack.imgur.com/Zdh0W.png

0 个答案:

没有答案