手记

Android压力测试的一些相关指令

Monkey工具
ADB命令
Monkey Script
MonkeyRunner

adb logcat | grep START                          *查看所有应用的包名*
adb shell monkey 1000                            (对Android系统随机做1000条测试)
adb shell monkey -p 全包名 1000                   (对某一个软件随机做1000条测试)
adb shell monkey -p 全包名 --throttle 1000 10      间隔1秒测试10条数据
adb shell monkey -s 1234 -p 全包名 1000            按以1234为种子的随机数经行测试。
adb shell monkey --ignore-crashes <event-count>   忽略应用崩溃和异常。
adb shell monkey --ignore-timeouts<event_count>   忽略应用超时事件
adb shell monkey --pct-motch                      动作事件
adb shell monkey --pct-touch                      触摸事件
adb shell monkey -f <scriptfile><event-count>     执行monkeyscript脚本
7人推荐
随时随地看视频
慕课网APP