当你调用ActionChains的方法时,不会立即执行,而是会将所有的操作按顺序存放在一个队列里,当你调用perform()方法时,队列中的时间会依次执行。
1. 快速学会使用
#首先加载包:
from selenium.webdriver.common.action_chains import ActionChains
#实例化ActionChains,括号里的driver就是你对webdriver的实例化,根据实际的定义进行修改
action = ActionChains(driver)
#如果是鼠标操作,可以先获取一个元素
write = driver.find_element_by_xpath('//input[@value="Write on hover"]')
#鼠标移动到 write元素
action.move_to_element(write).perform() # 移动到write
#如果是键盘操作
#在当前的焦点出写入字符,'a' 也可以用一个变量替代
action.send_keys('a').perform() # 输入 a
action.key_down(Keys.CONTROL).send_keys('c').key_up(Keys.CONTROL).perform() # ctrl+c
2.ActionChains方法列表
click(on_element=None) ——单击鼠标左键
click_and_hold(on_element=None) ——点击鼠标左键,不松开
context_click(on_element=None) ——点击鼠标右键
double_click(on_element=None) ——双击鼠标左键
drag_and_drop(source, target) ——拖拽到某个元素然后松开
drag_and_drop_by_offset(source, xoffset, yoffset) ——拖拽到某个坐标然后松开
key_down(value, element=None) ——按下某个键盘上的键
key_up(value, element=None) ——松开某个键
move_by_offset(xoffset, yoffset) ——鼠标从当前位置移动到某个坐标
move_to_element(to_element) ——鼠标移动到某个元素
move_to_element_with_offset(to_element, xoffset, yoffset) ——移动到距某个元素(左上角坐标)多少距离的位置
perform() ——执行链中的所有动作
release(on_element=None) ——在某个元素位置松开鼠标左键
send_keys(*keys_to_send) ——发送某个键到当前焦点的元素
send_keys_to_element(element, *keys_to_send) ——发送某个键到指定元素
参考的文章链接:
- https://www.jb51.net/article/92682.htm