selenium:鼠标模拟操作ActionChains

ActionChains

1.导入ActionChains包

python 复制代码
from selenium.webdriver import ActionChains
  1. 执行原理

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

  1. 基本用法:
  • 生成一个动作action=ActionChains(driver)
  • 动作添加方法1 action.方法1
  • 动作添加方法2 action.方法2
  • 调用perform()方法执行(action.perform())
  1. 具体写法

链式写法

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

分布写法:

  • actions = ActionChains(driver)
  • actions.move to element(element)
  • actions.click(element)
  • actions.perform()

示例:

python 复制代码
    def test_actionchains(self):
        self.driver.get("https://www.baidu.com/")
        element = self.driver.find_element('xpath',"//*[@id='s-top-left']/a[1]")
        action = ActionChains(self.driver)
        action.click(element)
        action.perform()
  1. 不同操作对应不同的方法:
  • 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) #发送某个键到指定元素

示例

python 复制代码
class TestClick:

    def setup(self):
        self.driver = webdriver.Chrome()
        self.driver.maximize_window()
        self.driver.implicitly_wait(3)#隐式等待
        self.driver.get('https://ip:port/')

    def test_click(self):
        e = self.driver.find_element(by='xpath',value='//*[@id="root"]/main/div[2]/div[4]/div[2]/div[1]/div/div[1]/div[2]/span')
        ActionChains(self.driver).move_to_element(e).click(e).perform()
相关推荐
123过去3 小时前
wifi-honey使用教程
linux·网络·测试工具
123过去10 小时前
pixiewps使用教程
linux·网络·测试工具·算法·哈希算法
测试老哥12 小时前
Web自动化测试:Cypress 测试框架概述
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
123过去13 小时前
reaver使用教程
linux·网络·测试工具·智能路由器
llilian_1614 小时前
卫星时钟 时钟同步解决方案——基于高精度卫星时钟同步授时装置 卫星同步时钟 授时同步装置
功能测试·单片机·测试工具
llilian_1619 小时前
gPTP时钟模块 gPTP时钟同步模块核心优势与全场景应用解析 PTP主时钟 ptp授时卡
功能测试·单片机·测试工具
Lethehong1 天前
Python Selenium全栈指南:从自动化入门到企业级实战
python·selenium·测试工具·自动化
山里幽默的程序员1 天前
Postman如何导出全部接口集合?备份与共享详细步骤
测试工具·postman
吉哥机顶盒刷机2 天前
IPTV抓包工具合集:Wireshark、parse_cap_channels_v2、IPTV全能工具箱
网络·测试工具·wireshark
oi..2 天前
Flag入门—修改数据包拿到答案
笔记·测试工具·安全·网络安全