其他分享
首页 > 其他分享> > ActionChains简单介绍及使用

ActionChains简单介绍及使用

作者:互联网

参考官网:https://selenium-python.readthedocs.io/api.html

执行原理:
调用ActionChains的方法时,不会立即执行,而是将所有的操作,按顺序存放在一个队列里,当你调用perform()方法时,队列中的事件会依次执行

基本用法:
生成一个动作 action = ActionChains(driver)
动作添加方法1 :action.方法1
动作添加方法2 :action.方法2
调用perform()方法执行:(action.perform())
具体写法:
链式写法:ActionChains(driver).move_to_element(element).click(element).perform()
分布写法:
action = ActionChains(driver)
action.move_to_element(element)
action.click(element)
action.perform()

actionchains - 用法1:对不同的元素进行点击、双击、右击操作

		# 定义ActionChains方法
        action = ActionChains(self.driver)
      

标签:ActionChains,driver,介绍,element,perform,简单,action,方法
来源: https://blog.csdn.net/xmy0501/article/details/110673021