自动化测试----adb实用命令集

卸载app
adb uninstall com.esky.echat

安装包
adb install fuliao.apk

启动测试用例 并将输出内容追加到log.txt文件
adb shell am instrument -w -r -e debug false -e class com.example.administrator.mytestcase.ExampleInstrumentedTest com.example.administrator.mytestcase.test/android.support.test.runner.AndroidJUnitRunner >>log.txt

列出所有已安装的instrument
adb shell pm list instrumentation

你可能感兴趣的:(自动化测试----adb实用命令集)