首先一个简单的打开应用命令,如果未安装应用,增加app参数指定apk的位置,具体参数意思就不讲了
Open Application http://localhost:4723/wd/hub platformName=Android platformVersion=5.1.1 deviceName=5017469f appPackage=com.handbblite.app appActivity=com.handbblite.app.ui.HBMainScreen
1、appActivity的获取
这个网上提供了很多种方法,但实际使用好几种都有可能获取到错误的appActivity而导致打不开应用,比如打开应用后使用adb shell dumpsys window | findstr mCurrentFocus或adb shell dumpsys activity |findstr "mFocusedActivity"。还是老老实实用adb logcat然后在日志里找吧,有原始包的话用aapt dump badging xxx.apk的方式应该也行(?)。总之最后可以用adb -P 5037 -s 5017469f shell am start -W -n com.handbblite.app/com.handbblite.app.ui.HBMainScreen -S验证一下,能打开就ok了。
2、UiAutomator2自动退出