当前位置:网站首页>Selenium:鼠标、键盘事件
Selenium:鼠标、键盘事件
2022-08-01 04:59:00 【不怕猫的耗子A】
鼠标事件
1、前面介绍了Selenium中模拟鼠标"左键单击"的方法click(),仅仅只有这个方法是完全不够的。现在的Web产品中提供了更丰富的鼠标交互方式
⑴例如鼠标右击、双击、悬停、拖动等功能
⑵同样的在Selenium中也提供了对应的方法来模拟这些鼠标操作
2、在WebDriver中,将这些关于鼠标操作的方法封装在了ActionChains类中
⑴类名ActionChains两个单词首字母需要大写
3、ActionChains类下的鼠标方法在使用前都需要先实例化一个ActionChains对象,最后使用perfrom()方法进行提交动作
⑴使用ActionChains对象调用其下的鼠标方法
执行动作
1、方法名:perfrom()
2、之所以要先介绍这个方法是因为这个方法的作用为:执行所有的ActionChains中存储的行为,可以理解成对整个操作的提交动作
⑴也就是说:在ActionChains类中的所有鼠标方法,都需要经过这个方法进行提交
3、调用ActionChains类方法(鼠标操作方法)时,不会立即执行,而是将所有操作都存放在一个队列里,当调用perform()方法时,队列里的操作会依次执行
⑴可以理解为对鼠标事件的提交操作
4、这个方法都是与其他鼠标方法结合起来使用的,因此会在后面的例子中进行演示
鼠标左键单击
边栏推荐
- (more than 2022 cattle school four) A - Task Computing + dynamic programming (sort)
- MySQL Practice Summary -
- (Codeforce 757) E. Bash Plays with Functions
- typescript22-接口继承
- (2022牛客多校四)D-Jobs (Easy Version)(三维前缀或)
- PMP子过程定义总结
- (2022 Niu Ke Duo School IV) K-NIO's Sword (Thinking)
- 备战金九银十,如何顺利通过互联网大厂Android的笔面试?
- 怀念故乡的面条
- 怀念故乡的月亮
猜你喜欢

typescript21 - Comparison of Interfaces and Type Aliases

【愚公系列】2022年07月 Go教学课程 024-函数

(2022牛客多校四)H-Wall Builder II(思维)

Risk strategy important steps of tuning method

「以云为核,无感极速」顶象第五代验证码

pytroch、tensorflow对比学习—搭建模型范式(构建模型方法、训练模型范式)

MySQL-DML语言-数据库操作语言-insert-update-delete-truncate

出现Command ‘vim‘ is available in the following places,vim: command not found等解决方法

开源许可证 GPL、BSD、MIT、Mozilla、Apache和LGPL的区别

The method of solving stored procedure table name passing through variable in mysql
随机推荐
25. Have you been asked these three common interview questions?
ModuleNotFoundError: No module named 'tensorflow.keras' error message solution
出现Command ‘vim‘ is available in the following places,vim: command not found等解决方法
Immutable
typescript23-元组
报错:AttributeError: module ‘matplotlib’ has no attribute ‘figure’
High Numbers | 【Re-integration】Line Area Score 880 Examples
pytorch、tensorflow对比学习—计算图和微分机制
y83. Chapter 4 Prometheus Factory Monitoring System and Actual Combat -- Advanced Prometheus Alarm Mechanism (14)
pytorch、tensorflow对比学习—张量
PAT serie b write the number 1002
typescript28-枚举类型的值以及数据枚举
I met a shell script
PMP 项目质量管理
typescript24 - type inference
今日睡眠质量记录68分
请问表格储存中用sql只能查询到主键列,ots sql非主键不支持吗?
【愚公系列】2022年07月 .NET架构班 085-微服务专题 Abp vNext微服务网关
在沈自所的半年总结
【愚公系列】2022年07月 Go教学课程 025-递归函数