gpt4 book ai didi

python-2.7 - 尝试通过 Selenium 和 Python 使用 GeckoDriver Firefox 登录 Gmail 帐户时出现 “This browser or app may not be secure” 错误

转载 作者:行者123 更新时间:2023-12-04 11:04:37 34 4
gpt4 key购买 nike

我想使用 selenium 登录我的 gmail 帐户。我使用 python2.7 。
它没有错误,但页面说由于某种原因我无法登录我的帐户。你可以看到下面的截图。 screenshot

这是我的代码:

import time
import selenium
from selenium import webdriver
from selenium.webdriver.support.ui import Select
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By

EXE_PATH = r'C:\Users\LENOVO\Downloads\geckodriver.exe'
driver = webdriver.Firefox(executable_path=EXE_PATH)

def login():
mail = 'myMail'
pw = 'myPassword'
driver.get('https://gmail.com')
email = driver.find_element_by_name('identifier')
email.send_keys(mail)
driver.find_element_by_id('identifierNext').click()
time.sleep(10)
password = driver.find_element_by_name('password')
password.send_keys(pw)
driver.find_element_by_id('passwordNext').click()

我该怎么办?请帮助我,我只是一个菜鸟和初学者。谢谢师傅

最佳答案

试试这个对我有用的解决方案我什至现在可以使用这个解决方案登录我的 Gmail。设置用户代理属性后,它就像一个奇迹。

<webview src="https://mail.google.com/" useragent="Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko"></webview>

关于python-2.7 - 尝试通过 Selenium 和 Python 使用 GeckoDriver Firefox 登录 Gmail 帐户时出现 “This browser or app may not be secure” 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59515561/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com