由于webdriver是要模拟真实的用户操作,因此webdriver的Action类中提供了很多与操作有关的方法。
下面列举一下Action类的一些主要方法
from selenium.webdriver.common.action_chains import ActionChains
element = wd.find_element_by_link_text(‘xxxxx‘)
hov = ActionChains(wd).move_to_element(element)
hov.perform()
具体的api文档参考这里
原文:http://www.cnblogs.com/hugh007/p/3862986.html