我正在尝试单击网页上类名下方 5 像素的区域。
这是代码:
homeLink = driver.find_element_by_class_name('*****')
action = webdriver.common.action_chains.ActionChains(driver)
action.move_to_element_with_offset(homeLink, 0, 5)
action.click()
action.perform()
错误:"消息:没有这样的元素:无法找到元素:{"方法":"类名","选择器":"******"}">
该网页:
<div class="*****">Internal Tags</div>
你可以参考这个,
homeLink = driver.find_element_by_xpath("//div[@class='*****' and contains(text(),'Internal Tags')]")
action=ActionChains(driver)
action.move_to_element(homeLink).click().perform()