python – 如何在使用selenium悬停后单击可见的元素?

前端之家收集整理的这篇文章主要介绍了python – 如何在使用selenium悬停后单击可见的元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想点击悬停后可见的按钮.它的 HTML是:
<span class="info"></span>

我用过这段代码

import selenium.webdriver as webdriver
from selenium.webdriver.common.action_chains import ActionChains

url = "http://example.com"

driver = webdriver.Firefox()
driver.get(url)
element = driver.find_element_by_class_name("info")
hov = ActionChains(driver).move_to_element(element)
hov.perform()
element.click()

虽然不行.我得到一个错误连接到最后一行代码element.click():

selenium.common.exceptions.ElementNotVisibleException: Message: \
u'Element is not currently visible and so may not be interacted with'

有什么建议吗?

解决方法

我打赌你应该等待元素,直到它变得可见.

三种选择:

> call time.sleep(n)
>使用WebDriverWait,如建议herehere

我会选择第二个选项.

UPD:

在这个通过selenium悬停的特定网站根本不起作用,所以唯一的选择是使用js通过execute_script单击按钮:

driver.execute_script('$("span.info").click();')

希望有所帮助.

原文链接:https://www.f2er.com/python/186182.html

猜你在找的Python相关文章