博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium2.0功能测试之如何使用Action类来模拟交互
阅读量:6137 次
发布时间:2019-06-21

本文共 1098 字,大约阅读时间需要 3 分钟。

 Selenium提供了一个强大的用于真实的模拟用户交互的一个类----Actions,这个类提共了一系列的API供模拟交互:

  keyDown : 用于模拟按键被按下
  keyUp : 用于模拟按键松开
  doubleClick : 用于模拟双击
  clickAndHold : 用于模拟鼠标左键点住不放开
  release : 用于模拟松开鼠标,与clickAndHold相配合
  moveToElement : 将鼠标移动至元素的中间位置
  contextClick : 模拟鼠标右键点击
  dragAndDrop : 拖拽
  这里由于测试页面的限制我就只举一个contextClick的例子:

package org.coderinfo.demo;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.interactions.Actions;public class ActionDemo {private static final String URL = "http://www.baidu.com";/*** @author Coderinfo* @E-mail coderinfo@163.com*/public static void main(String[] args) throws InterruptedException {WebDriver driver = new ChromeDriver();driver.manage().window().maximize(); //最大化浏览器界面driver.get(URL); //访问度娘首页。Thread.sleep(2000); //等待页面加载WebElement input = driver.findElement(By.id("kw"));  //获取百度搜索框Actions ac = new Actions(driver);  // 为driver 加载 actionsac.contextClick(input).perform();  // 在百度搜索框上点击右键Thread.sleep(10000);driver.quit();}}

最新内容请见作者的GitHub页:

转载地址:http://qxrua.baihongyu.com/

你可能感兴趣的文章
Hadoop2.5.0 搭建实录
查看>>
实验吧 recursive write up
查看>>
Android JSON数据解析
查看>>
DEV实现日期时间效果
查看>>
java注解【转】
查看>>
Oracle表分区
查看>>
centos 下安装g++
查看>>
嵌入式,代码调试----GDB扫盲
查看>>
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>