python+selenium 鼠标事件操作方法


Posted in Python onAugust 24, 2019

一、前言

除了可以使用 click( ) 来模拟鼠标的单击操作,现在Web产品中还提供了更丰富的鼠标交互方式,例如鼠标右键、双击、悬停、拖动等功能,在WebDriver中,将这些关于鼠标操作的方法都封装在 ActionChains 类中。

ActionChains 类提供了鼠标操作的常用方法:

perform() 执行所有ActionChains中存储的行为
context_click() 右击
double_click() 双击
drag_and_drop() 拖动
move_to_element() 鼠标悬停

二、详细使用

1.鼠标右击操作

from selenium import webdriver
#引入ActionChains类
from selenium.webdriver.common.action_chains import ActionChains
 
driver = webdriver.Chrome()
driver.get("url")
#......
#定位到需要右击的元素
right_click = driver.find_element_by_id("id")
#对元素进行右击操作
ActionChains(driver).context_click(right_click).perform()
#......

ActionChains(driver):调用ActionChains类,将浏览器驱动driver作为参数传入;

perform():执行所有ActionChains中存储的行为,可以理解成是对整个操作的提交动作;

2.鼠标悬停

move_to_element()方法可以模拟鼠标悬停的动作,其用法与context_click()相同;

from selenium import webdriver
#引入ActionChains类
from selenium.webdriver.common.action_chains import ActionChains
 
driver = webdriver.Chrome()
driver.get("url")
#......
#定位到需要悬停的元素
above = driver.find_element_by_id("id")
#对元素进行右击操作
ActionChains(driver).move_to_element(above).perform()
#......

3.鼠标双击

double_click() 方法用于模拟鼠标双击操作;

from selenium import webdriver
#引入ActionChains类
from selenium.webdriver.common.action_chains import ActionChains
 
driver = webdriver.Chrome()
driver.get("url")
#......
#定位到需要双击的元素
double_click = driver.find_element_by_id("id")
#对元素进行右击操作
ActionChains(driver).double_click(double_click).perform()
#......

4.鼠标拖动操作

drag_and_drop(source,target) 在源位置元素上按住鼠标左键,然后移动到目标元素上释放。

source:鼠标拖动的源元素

target:鼠标释放的目标元素

from selenium import webdriver
#引入ActionChains类
from selenium.webdriver.common.action_chains import ActionChains
 
driver = webdriver.Chrome()
driver.get("url")
#......
#定位元素的源位置
source = driver.find_element_by_id("id")
#定位元素要移到到的目标位置
target = driver.find_element_by_id("id")
#对元素进行拖动操作
ActionChains(driver).drag_and_drop(source,target).perform()
#......

以上这篇python+selenium 鼠标事件操作方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
深入理解Javascript中的this关键字
Mar 27 Python
Python实现对比不同字体中的同一字符的显示效果
Apr 23 Python
在Python中处理时间之clock()方法的使用
May 22 Python
Python 快速实现CLI 应用程序的脚手架
Dec 05 Python
python数字图像处理之高级形态学处理
Apr 27 Python
python3.7.0的安装步骤
Aug 27 Python
python通过zabbix api获取主机
Sep 17 Python
python实现小球弹跳效果
May 10 Python
python 基于TCP协议的套接字编程详解
Jun 29 Python
python简单的三元一次方程求解实例
Apr 02 Python
Python图像识别+KNN求解数独的实现
Nov 13 Python
在Django中使用MQTT的方法
May 10 Python
python+selenium select下拉选择框定位处理方法
Aug 24 #Python
Python封装成可带参数的EXE安装包实例
Aug 24 #Python
python识别文字(基于tesseract)代码实例
Aug 24 #Python
python图片二值化提高识别率代码实例
Aug 24 #Python
关于Python形参打包与解包小技巧分享
Aug 24 #Python
python-序列解包(对可迭代元素的快速取值方法)
Aug 24 #Python
对python中的装包与解包实例详解
Aug 24 #Python
You might like
深入分析PHP引用(&)
2014/09/04 PHP
Yii支持多域名cors原理的实现
2018/12/05 PHP
纯文字版返回顶端的js代码
2013/08/01 Javascript
javascript full screen 全屏显示页面元素的方法
2013/09/27 Javascript
使用js声明数组,对象在jsp页面中(获得ajax得到json数据)
2013/11/05 Javascript
javascript生成随机颜色示例代码
2014/05/05 Javascript
javascript的BOM汇总
2015/07/16 Javascript
每天一篇javascript学习小结(基础知识)
2015/11/10 Javascript
jQuery实时显示鼠标指针位置和键盘ASCII码
2016/03/28 Javascript
easyui取消表单实时验证,提交时统一验证的简单实例
2016/11/07 Javascript
JS仿京东移动端手指拨动切换轮播图效果
2020/04/10 Javascript
JavaScript严格模式详解
2017/01/16 Javascript
利用js查找数组中指定元素并返回该元素的所有索引示例
2017/03/29 Javascript
jQueryMobile之窗体长内容的缺陷与解决方法实例分析
2017/09/20 jQuery
JS设计模式之数据访问对象模式的实例讲解
2017/09/30 Javascript
js前端导出Excel的方法
2017/11/01 Javascript
详解基于vue的服务端渲染框架NUXT
2018/06/20 Javascript
最适应的vue.js的form提交涉及多种插件【推荐】
2018/08/27 Javascript
前后端如何实现登录token拦截校验详解
2018/09/03 Javascript
使用vuex解决刷新页面state数据消失的问题记录
2019/05/08 Javascript
微信小程序使用车牌号输入法的示例代码
2019/08/20 Javascript
python的debug实用工具 pdb详解
2019/07/12 Python
pandas实现将日期转换成timestamp
2019/12/07 Python
Python requests及aiohttp速度对比代码实例
2020/07/16 Python
python 基于opencv去除图片阴影
2021/01/26 Python
Net-A-Porter美国官网:全球时尚奢侈品名站
2017/02/11 全球购物
Hoover胡佛官网:美国吸尘器和洗地机品牌
2019/01/09 全球购物
西雅图的买手店:Totokaelo
2019/10/19 全球购物
安康杯竞赛活动总结
2014/05/05 职场文书
五心教育心得体会
2014/09/04 职场文书
民主生活会剖析材料
2014/09/30 职场文书
升学宴答谢词
2015/01/05 职场文书
安全员岗位职责
2015/02/10 职场文书
2015年幼师工作总结
2015/04/28 职场文书
经营目标责任书
2015/05/08 职场文书
Python基本的内置数据类型及使用方法
2022/04/13 Python