5
我想點擊Selenium中的一個元素。爲什麼我不能單擊Selenium中的元素?
該網站是:URL = 「http://jenner.com/people」
該元素的XPath是:URL = // DIV [@類='過濾辦事處]
這裏是我的代碼:
from selenium import webdriver
driver = webdriver.Firefox()
driver.get(url)
element = driver.find_element_by_xpath("//div[@class='filter offices']")
element.click()
當我點擊該元素時,應出現辦公室的下拉菜單。相反,當我點擊元素時,沒有任何反應。我究竟做錯了什麼?
你是怎麼知道監聽者是在子div上註冊的,而不是在包含'filter offices'的監聽器上註冊的? – Mugen 2017-08-07 12:29:31
你怎麼知道監聽者事件在哪裏註冊? – Floella 2018-02-27 13:01:15