我正在尝试使用 Python 上的 WebDriver 在 Selenium 的 Google 首页上单击 Gmail 链接。我的代码基本上复制了这里的代码:Why Cant I Click an Element in Selenium?
我的代码:
import selenium.webdriver as webdriver
firefox = webdriver.Firefox()
firefox.get("http://www.google.ca")
element = firefox.find_element_by_xpath(".//a[@id='gb_23']")
element.click()
webdriver 加载页面,然后什么也没有发生。我尝试过使用 ActionChains 和 move_to_element(element)、click(element),然后 perform(),但也没有任何反应。