UIAutomator2.0初始

时间:2023-03-10 06:53:46
UIAutomator2.0初始

1. 先直接上样例,谷歌官方Demo: https://github.com/googlesamples/android-testing

2. 一句话说明改动思路

  • Most importantly, UIAutomator is now based on Android Instrumentation

Instrument终将uiautomator纳入麾下

  • 工程由原来的jar包形式,转化为APK样式,instrument--shell执行
  • 操作更快更高效

3. 主要架构

UIAutomator2.0初始

4.   详细改动

API参考: https://developer.android.google.cn/reference/android/support/test/uiautomator/package-summary.html

5.   支持UIAutomator+Gradle,生成HTML格式测试报告

UIAutomator2.0初始