appium安卓自动化的 常用driver方法封装

做安卓自动化的时候,很多方法写起来会造成代码冗余,把这部分封装起来 ,添加到androidUI工具类里,随时可调用

都放在这个类下面:

@Component
public class AndroidUI{

首先要进行driver实例的连接,连接后才能做相应的一些操作,及得造作完成要关闭driver,避免内存占用

连接driver

/*
* @method: 连接driver
*/
public void setUp(DesiredCapabilities dCapabilities) throws MalformedURLException {
driver = new AndroidDriver<>(new URL("http://127.0.0.1:4723/wd/hub"), dCapabilities);
logger.info(driver.currentActivity());
}

断开driver

/*
* @method: 断开driver
*/
public void tearDown() throws Exception {
if (null != driver) {
driver.quit();
}
}

休眠方法时间定义毫秒或秒都行吧,看个人喜好,我这里为了写着定义成秒的,系统自带是毫秒

/*
* @method: 休眠方法
* @param: int seconds 休眠的时间,单位为s(必须大于等于1)
* @other: Appium类内设置的所有操作方法均会在正常结束后休眠1s,无需在用例中手动休眠
*/
public void sleep(int time) {
if (!((time >= 1) && (time % 1 == 0))){
Assert.fail("sleep: Parameter ERROR!");
}
try {
Thread.sleep(time * 1000);
//System.out.println("休息");
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

上面休眠方法是死的,而元素加载时间不确定的,可以用下面等待找到元素的灵活等待时间

/*
* @method: 比sleep更有客观的延迟方法,在一定时间内等待某元素在屏幕中出现。
* @param: String target 等待的目标
* int time 等待时间,单位为ms,必须是1的正整数倍
* @other: Appium类内设置的所有操作方法均会在正常结束后休眠1s,无需在用例中手动休眠
*/
public boolean waitFor(String target,int time) { try {
if (!((time >= 1) && (time % 1 == 0))){
Assert.fail("waitFor: Parameter ERROR!");
}
String result = null;
String page = driver.getPageSource();
logger.info("Waiting for " + target + " ..."); for (int i = 1; i <= time; i++) {
if (page.contains(target)) {
result = "Succeeded.";
logger.info(result);
break;
} else {
sleep(1);
page = driver.getPageSource();
}
}
} catch (Exception e) {
logger.error("元素:"+target+"不存在");
sleep(1);
e.printStackTrace();
return false;
}
return true;
} 然后是滑动操作,这个操作是比较常用的手势,按照方向做了封装,调用时把方向作为参数使用
/*
* @method: 滑动操作
* @param: String direction, right 向右四分之一/left 向左四分之一/up 向上四分之一/down 向下四分之一/top 到顶/end 到底
*/
public void swipeTo(String direction) { int width=driver.manage().window().getSize().width;
int height=driver.manage().window().getSize().height; if (direction == "right") {
driver.swipe(width/4, height/2, width*3/4,height/2, 500);
logger.info("右滑");
} else if (direction == "left") {
driver.swipe(width*3/4, height/2, width/4, height/2, 500);
logger.info("左滑");
} else if (direction == "down") {
driver.swipe(width/2, height/4, width/2, height*3/4, 500);
logger.info("下滑");
} else if (direction == "up") {
driver.swipe(width/2, height*3/4, width/2, height/4, 500);
logger.info("上滑");
} else if (direction == "end") {
String page1;
String page2;
do {
page1 = driver.getPageSource();
driver.swipe(width/2, height*3/4, width/2, height/4, 500);
sleep(2);
page2 = driver.getPageSource();
} while (!page1.equals(page2));
logger.info("滑到底");
} else if (direction == "top") {
String page1;
String page2;
do {
page1 = driver.getPageSource();
driver.swipe(width/2, height/4, width/2, height*3/4, 500);
sleep(4);
page2 = driver.getPageSource();
} while (!page1.equals(page2));
logger.info("滑到顶");
}
sleep(1);
} 学过安卓开发的都知道,layout中有各种view、包括textView、imageView、Button、checkBox、radioButton、alertDialog、processDialog啥的
所以对于这些的点击处理最好是根据id或text作为参数封装方法来进行定位点击操作
例如:
/*
* @method: 通过想点击文字的控件id和顺序index点击文字,当第一屏未找到文字会向下滚动查找,若滚到底扔未发现文字断言失败;方法结束后休眠1s
* @param: String id 想点击文字的id
* int index 顺序
*/
public void clickTextById(String id, int index) { String page1;
String page2;
int result = 0; do {
page1 = driver.getPageSource();
if (page1.contains(id)) {
if (index == 0) {
AndroidElement imageElement = driver.findElementByXPath("//android.widget.TextView[contains(@resource-id,'" + id + "')]");
logger.info("Text " + id + " found.");
imageElement.click();
logger.info("Text " + id + " clicked.");
result = 1;
} else if (index > 0) {
List<AndroidElement> imageElements = driver.findElementsByXPath("//android.widget.TextView[contains(@resource-id,'" + id + "')]");
AndroidElement imageElement = imageElements.get(index);
logger.info("Text " + id + " found.");
imageElement.click();
logger.info("Text " + id + " clicked.");
result = 1;
}
break;
} else {
this.swipeTo("down");
page2 = driver.getPageSource();
}
} while (!page1.equals(page2)); if (result == 0) {
Assert.fail("Clicking Text " + id + " failed.");
}
sleep(1);
}

当然,我们进行测试,是为了确定页面中有某元素或是没有某元素,所以用的最多的方法是search

public void search(String list) {

   String pageSource = this.pageSource();
if (!list.contains(",")) {
if (pageSource.contains(list)) {
logger.info(list + " is found.");
} else {
takeScreenShot("FAILURE(search)_" + list);
Assert.fail("Searching " + list + " failed.");
}
} else {
String elements[] = list.split(",");
for (int i = 0; i <= ((elements.length)-1); i++) {
if (elements[i].contains(" ")) {
elements[i] = elements[i].trim();
}
if (pageSource.contains(elements[i])) {
logger.info(elements[i] + " is found.");
} else {
takeScreenShot("FAILURE(search)_" + list);
Assert.fail("Searching " + elements[i] + " failed.");
}
}
}
sleep(1);
} 上面要说明一下。
takeScreenShot("FAILURE(search)_" + list); 这个是单独写的截屏函数,
这个方法在出现错误时,保存个截图到某一文件夹下更好,这样可以方便定位问题
public void takeScreenShot(String methodName) {
File srcFile = AndroidUI.driver.getScreenshotAs(OutputType.FILE);
//利用FileUtils工具类的copyFile()方法保存getScreenshotAs()返回的文件对象。
// FileUtils.copyFile(srcFile, new File("screenshot.png"));
String fileName = methodName + "_" + DateUtil.formatNowTime(12) + ".png";
String filePath = "C:\\Users\\linyuchen\\Pictures\\AndroidUI";
try {
FileUtils.copyFile(srcFile, new File(filePath+"\\"+fileName));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// System.out.println("taking ScreenShots"); } 其实还有很多很多方法 ,大家可以根据自己喜好来定义 都可以随意些
												

appium安卓自动化的 常用driver方法封装的更多相关文章

  1. appium安卓自动化常见问题处理

    appium安卓自动化常见问题处理 1.seesionnotcreatedexception 遇到这个首先确定下jdk需要1.7以上 然后还要确定appium是启动状态,可以cmd重启下appium ...

  2. 常用js方法封装

    常用js方法封装 var myJs = { /* * 格式化日期 * @param dt 日期对象 * @returns {string} 返回值是格式化的字符串日期 */ getDates: fun ...

  3. JS常用公共方法封装

    _ooOoo_ o8888888o 88" . "88 (| -_- |) O\ = /O ____/`---'\____ .' \\| |// `. / \\||| : |||/ ...

  4. JavaScript常用工具方法封装

    因为工作中经常用到这些方法,所有便把这些方法进行了总结. JavaScript 1. type 类型判断 isString (o) { //是否字符串 return Object.prototype. ...

  5. Selenium3+python自动化007-Selenium常用定位方法

    自动化测试只要掌握四步操作:获取元素,操作元素,获取返回结果,断言(返回结果与期望结果是否一致),最后自动出测试报告.元素定位在这四个环节中是至关重要的,如果说按学习精力分配的话,元素定位占70%:操 ...

  6. 项目常用JS方法封装--奋斗的IT青年(微信公众号)

                                                                                                        ...

  7. Socket一些常用的方法封装

    public class SocketHelper { /// <summary> /// 功能描述:得到一个实例对象 /// </summary> /// <retur ...

  8. 常用js方法封装使用

    // 冒泡排序 export function bubbleSort(arr) { let i = arr.length - 1; while (i > 0) { let maxIndex = ...

  9. appium+python自动化24-滑动方法封装(swipe)

    swipe介绍 1.查看源码语法,起点和终点四个坐标参数,duration是滑动屏幕持续的时间,时间越短速度越快.默认为None可不填,一般设置500-1000毫秒比较合适. swipe(self, ...

随机推荐

  1. 【线程篇】stop() 和suspend()

    1.为什么不推荐用 stop()和 suspend() stop这个方法将终止所有未结束的方法,包括run方法.当一个线程停止时候,他会立即释放所有他锁住对象上的锁.这会导致对象处于不一致的状态.假如 ...

  2. python之函数用法globals()

    # -*- coding: utf-8 -*- #python 27 #xiaodeng #python之函数用法globals() #globals() #说明:在当前作用域下,查看全局变量 ''' ...

  3. global语句(python学习手册422页)

    # -*- coding: cp936 -*- #python 27 #xiaodeng #global语句(python学习手册422页) #实际上就是一个名为__builtin__的模块,但是必须 ...

  4. 按部就班——图解配置IIS5的SSL安全访问(转)

    作者:mikespook 版本:1.0 最后更新:2004-12-22 16:04 按部就班——图解配置IIS5的SSL安全访问... 1 写在前面的... 1 第一步:       准备工作... ...

  5. Linux下MySQL链接被防火墙阻止

    Linux下安装了MySQL,不能从其它机器访问 帐号已经授权从任意主机进行访问 vi /etc/sysconfig/iptables 在后面添加 -A RH-Firewall-1-INPUT -m ...

  6. openfire + spark 展示组织机构(客户端)

    在spark 加一个插件用于展示组织机构, 参考了好多人的代码 插件主类增加一个 TAB用于展示机构树 package com.salesoa.orgtree; import java.net.URL ...

  7. Eclipse c++ 编译调试

    直接添加源文件方法: 右键选择工程->import->General->File System,在弹出的对话框中选择源文件目录,筛选文件后: 1.如果直接加到工程中,点Finish就 ...

  8. 搭建Hexo博客并部署到Github

    参考: http://www.jianshu.com/p/a67792d93682 http://jingyan.baidu.com/article/d8072ac47aca0fec95cefd2d. ...

  9. Oracle LISTENER 主机名修改为IP地址后LISTENER无法监听到实例 oracle监听错误与hosts文件配置

    为什么listener.ora文件里面HOST后面到底应该输入IP地址还是主机名.我的经验告诉我,这边最好使用主机名.很多的时候,一个机器绑定的不只一个IP地址,如HOST后面是IP地址,那么ORAC ...

  10. HDUOJ ---1423 Greatest Common Increasing Subsequence(LCS)

    Greatest Common Increasing Subsequence Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536 ...