首页 > 代码库 > Uiautomator UiDeviceAPI介绍
Uiautomator UiDeviceAPI介绍
1 https://developer.android.com/training/testing/ui-testing/uiautomator-testing.html http://www.cnblogs.com/by-dream/p/4921701.html http://blog.csdn.net/maocaowu_csdn/article/details/50684309
2 用UIautomator的流程
(1)获得一个UiDevice
对象,代表我们正在执行测试的设备。
对该UI组件执行一系列操作。
(2)通过findObject()
方法获取到一个UiObject
对象,代表我们需要执行测试的UI组件
(3)
(4)检查操作的结果是否符合预期。
3 UiDevice api
(1)getInstance(),通过getInstance()
方法获取到当前设备,入参为一个Instrumentation
对象:
UiDevice mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
(2) 其余常见的接口
// Start from the home screen
mDevice.pressHome();
(3)getLauncherPackageName
// wati for launch
final String mDevice.getLauncherPackageName(); 有关java final关键字的说明请看http://www.cnblogs.com/lwbqqyumidi/p/3513047.html
mDevice.wait(Until.hasObject(By.pkg(launcherPackage).depth(0)),
LAUNCH_TIMEOUT);
(4)
Uiautomator UiDeviceAPI介绍
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。