# 导入selenium中的actionchains的方法
from selenium.webdriver.common.action_chains import ActionChains
#识别需要悬停的元素
ele = self.driver.find_element_by_class_name('member-top')
# 鼠标移到悬停元素上
ActionChains(self.driver).move_to_element(ele).perform()
本文共 282 字,大约阅读时间需要 1 分钟。
# 导入selenium中的actionchains的方法
from selenium.webdriver.common.action_chains import ActionChains
#识别需要悬停的元素
ele = self.driver.find_element_by_class_name('member-top')
# 鼠标移到悬停元素上
ActionChains(self.driver).move_to_element(ele).perform()
转载于:https://www.cnblogs.com/sgwjj/p/8031513.html