无法使用Selenium单击/悬停在href按钮上

时间:2018-05-07 07:35:55

标签: python python-2.7 selenium web-scraping

我试图点击位于子菜单中的按钮。这是网站的代码:

Page and script

Button i want to click on

我尝试了很多东西,比如先悬停然后点击,但我收到了错误,我无法点击。这是我试过的:

element1 = driver.find_element_by_xpath("//*[contains(text(), 'Devis')]")
element2 = driver.find_element_by_xpath("//*[contains(text(), 'Suivi devis')]")

hoverover = ActionChains(driver).move_to_element(element1).move_to_element(element2).click().perform()

所以我想将鼠标悬停在DEVIS上,然后将其悬停在Suivi devis

修改

我不必登上DEVIS,我只需要用鼠标悬停以打开子菜单,其中有Suivi devis

0 个答案:

没有答案