1、整机测试,而不测试拨号键盘应用,忽略所有错误,次数100万次
adb shell monkey –ignore-crashes –ignore-timeouts –pkg-blaklist-file -v -v 1000000
2、测试计算器30万次,随机种子为100,随机延迟0-1秒,忽略所有错误
adb shell monkey -p com.android.calculator2 -s 100 –throttle 1000 –randomize-throttle –ignore-crashes –ignore-timeouts -v -v 30000
3、测试计算器,触摸事件30%,其他按键50%,错误停止,延时200
adb shell monkey -p com.android.calculator2 –throttle 200 –pct-touch 30 –pct-anyevent 50 -v -v 100000
4、对计算器进行旋转压力测试,事件延时2秒,10万次
adb shell monkey -p com.android.calculator2 –pct-rotation 100 –throttle 2000 100000
5、仅对整机的应用开启测试,事件延时5秒,10万次
adb shell monkey –pct-appswitch 100 –throttle 5000 100000