我正在尝试自动使用来自https://voice.google.com/about
的python和selenium发送文本消息。当我运行下面的代码时,它会选择google chrome的最新版本/实例,并且工作正常。但是,当我运行无头模式时,它使用的是旧版的google chrome(从屏幕截图中猜测),并给出了TimeoutException()
异常。登录失败。
我在IE仿真器中检查了登录框的元素ID,它似乎是相同的。
url = "https://voice.google.com/about"
driver.get(url)
time.sleep(5)
driver.get_screenshot_as_file('C:\\Drivers\\Q11-0.png')
# Click on a GET GOOGLE VOICE
WebDriverWait(driver, 60).until(
EC.element_to_be_clickable((By.XPATH, '//*[@id="heroToggle"]/button/span'))).click()
print("Clicked on a get google voice")
# Click on a WEB
WebDriverWait(driver, 60).until(
EC.element_to_be_clickable((By.XPATH, '//*[@id="heroToggle"]/div/button[3]'))).click()
print("Clicked on a WEB button.")
driver.get_screenshot_as_file('C:\\Drivers\\Q11-1.png')
# Enter username and password
# THIS IS WHERE IT FAILS
WebDriverWait(driver, 30).until(EC.element_to_be_clickable((By.ID, 'identifierId')))
email = driver.find_element_by_id('identifierId')
time.sleep(10)
email.send_keys('username')
time.sleep(10)
nextBtn = driver.find_element_by_xpath('//*[@id="identifierNext"]/content/span')
nextBtn.click()
driver.get_screenshot_as_file('C:\\Drivers\\Q11-2.png')
# Enter password
password = driver.find_element_by_xpath('//*[@id="password"]/div[1]/div/div[1]/input')
password.send_keys('password')
nextBtn = driver.find_element_by_xpath('//*[@id="passwordNext"]/content')
nextBtn.click()
驱动程序已正确更新。 我不确定自己在做什么错。任何帮助将不胜感激。
答案 0 :(得分:0)
尝试覆盖用户代理,使其不包含无头标签。
opts = Options()
opts.add_argument("user-agent=User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36")
driver = webdriver.Chrome(chrome_options=opts)