码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标悬停

时间:2015-07-09 00:36:53      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

>>> from selenium.webdriver.common.action_chains import ActionChains
>>> setting = driver.find_element_by_xpath("//div[@id=‘u1‘]/a[7]")
>>> ActionChains(driver).move_to_element(setting).perform()
>>> driver.find_element_by_class_name("setpref")
<selenium.webdriver.remote.webelement.WebElement object at 0x7fd7070589d0>
>>> driver.find_element_by_class_name("setpref").click()

 

鼠标悬停

ActionChains(driver).move_to_element(element).perform()

鼠标悬停

标签:

原文地址:http://www.cnblogs.com/isister/p/4631612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!