博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java-appium-527进阶-1 UiAutomator1&2区别和封装
阅读量:5126 次
发布时间:2019-06-13

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

1.UiAutomator和UiAtumator2的区别:

1.1 UiAutomator1有关于id定位的策略

UiAutomator1 id定位在resourceid匹配失败时,会匹配contentDesc。

安卓会根据id进行3种情况的判断:

  • 1.resourceId 如user_profile_icon
  • 2.accessibility id
  • 3.Strings.xml 研发所写的resource id,包含包名,如com.xueqiu.android:id/user_profile_icon。如果传入的text是resource Id将只使用resource id选择器

1418970-20181022112338792-1099802249.jpg

更多信息在appium/appium-android-bootstrap分支,详见https://github.com/appium-boneyard/appium-android-bootstrap/blob/master/bootstrap/src/io/appium/android/bootstrap/handler/Find.java。

1.2 UiAutomator2定位策略

UiAutomator2中id定位只匹配resourceId

if (by instanceof ById) {            String locator = rewriteIdLocator((ById) by);            return CustomUiDevice.getInstance().findObject(android.support.test.uiautomator.By.res(locator));        } else if (by instanceof By.ByAccessibilityId) {            return CustomUiDevice.getInstance().findObject(android.support.test.uiautomator.By.desc(by.getElementLocator()));        } else if (by instanceof ByClass) {            return CustomUiDevice.getInstance().findObject(android.support.test.uiautomator.By.clazz(by.getElementLocator()));        } else if (by instanceof By.ByXPath) {            final NodeInfoList matchedNodes = getXPathNodeMatch(by.getElementLocator(), null);            if (matchedNodes.size() == 0) {                throw new ElementNotFoundException();            }            return CustomUiDevice.getInstance().findObject(matchedNodes);        } else if (by instanceof By.ByAndroidUiAutomator) {            UiSelector selector = toSelector(by.getElementLocator());            if (selector == null) {                throw new UiSelectorSyntaxException(by.getElementLocator(), "");            }            return CustomUiDevice.getInstance().findObject(selector);}

详见:https://github.com/appium/appium-uiautomator2-server/blob/master/app/src/main/java/io/appium/uiautomator2/handler/FindElement.java

2. 查找控件方法的简单封装

在UiAutomator1中,id定位会去匹配contentDesc,此处只考虑xpath, id, contentDesc。

传入String,辅以正则表达式,如果匹配Xpath,就用xpath定位;如果匹配id,就用id定位

public WebElement locate(String locate){        if (locate.matches("\\/\\/.*")){            return  driver.findElementByXPath(locate);        }else{            return driver.findElementById(locate);        }    }

3. id和xpath定位的区别

1418970-20181005105605232-1748706704.png

使用id,contentDesc,class定位都是使用uiatumator自带的方法,使用xpath定位需要先获取节点信息,再对节点信息做检索
同一个元素:id: "com.xueqiu.android:id/tv_login" xpath: //*[@resource-id,"com.xueqiu.android:id/tv_login" ]

# 使用该命令可以查看执行时间,v代表详细信息,此处只查看结果和执行时间,将--v去除time curl -X POST http://127.0.0.1:4723/wd/hub/session/${SessionId}/elements --data-binary '{"using":"id","value":"com.xueqiu.android:id/tv_login"}' -H "Content-Type: application/json; charset=UTF-8" --v

1418970-20181004151953554-760908803.png

4.总结

1.UiAutomator使用id在匹配resourceId失败时,会使用ACCESSIBILITY_ID定位

UiAtumator2使用id定位被限制,只能使用resourceId定位
2.使用xpath和id定位,耗时差别可接受

封装寻找控件方法的测试代码

test.java

import io.appium.java_client.MobileElement;import io.appium.java_client.android.AndroidDriver;import junit.framework.TestCase;import org.junit.After;import org.junit.Before;import org.junit.Test;import java.io.IOException;import java.net.MalformedURLException;import java.net.URL;import java.util.concurrent.TimeUnit;import org.junit.experimental.theories.Theories;import org.openqa.selenium.WebElement;import org.openqa.selenium.remote.DesiredCapabilities;public class XueqiuDemo {    private AndroidDriver driver;    @Before    public void setUp() throws MalformedURLException {        DesiredCapabilities desiredCapabilities = new DesiredCapabilities();        desiredCapabilities.setCapability("platformName", "android");        desiredCapabilities.setCapability("deviceName", "domo");        desiredCapabilities.setCapability("appPackage", "com.xueqiu.android");        desiredCapabilities.setCapability("appActivity", ".view.WelcomeActivityAlias");        URL remoteUrl = new URL("http://localhost:4723/wd/hub");        driver = new AndroidDriver(remoteUrl, desiredCapabilities);        driver.manage().timeouts().implicitlyWait(20,TimeUnit.SECONDS);    }    @Test    public void sampleTest() throws InterruptedException {        locate("com.xueqiu.android:id/user_profile_icon").click();        Thread.sleep(2000);        locate("com.xueqiu.android:id/tv_login").click();        Thread.sleep(2000);        locate("com.xueqiu.android:id/tv_login_by_phone_or_others").click();        Thread.sleep(2000);        locate("com.xueqiu.android:id/register_phone_number").sendKeys("123456789");    }    public WebElement locate(String locate){        if (locate.matches("\\/\\/.*")){            return  driver.findElementByXPath(locate);        }else{            return driver.findElementById(locate);        }    }    @After    public void tearDown() {        driver.quit();    }}

转载于:https://www.cnblogs.com/csj2018/p/9741808.html

你可能感兴趣的文章
No projects are found to import
查看>>
VM异常关闭后导致虚拟机无法打开问题解决办法【已解决】
查看>>
centos7.3下apache搭建django[未成功]
查看>>
SQL语句大全-珍藏首选
查看>>
php下载文件添加header响应头
查看>>
logrotate
查看>>
ORACLE快速遍历树及join基表很大的性能问题
查看>>
以太网交换机
查看>>
DOM
查看>>
ROS学习笔记四:用C++编写ROS发布与订阅
查看>>
点击回车事件(登录)
查看>>
Windows7睡眠后自动唤醒
查看>>
Jq_网站顶部定时折叠广告
查看>>
GCD与LCM【数论】
查看>>
构建之法现代软件概述
查看>>
实现进程守护 脚本命令
查看>>
snappy
查看>>
CLR via C# 阅读 笔记
查看>>
互斥锁
查看>>
arp欺骗技术
查看>>