monkey常见命令

1、adb shell monkey 1000                                 ## monkey命令执行1000次随机随机事件
2、adb shell monkey -p apk包名 1000              ## 指定包名进行测试
3、adb shell monkey --ignore-crashes 1000     ## 忽略崩溃
4、adb shell monkey --ignore-timeouts 1000    ## 忽略超时
5、adb shell monkey -v 1000                            ## 指定日志详细程度级别
6、adb shell monkey -s seed号                         ## 34432221000指定种子号
7、adb shell monkey --throttle 1000 1000         ## 指定事件延迟1000毫秒
8、adb shell monkey --pct-touch 10 1000         ## 指定触摸事件百分比10%
9、adb shell monkey --pkg-whitelist-file /data/local/tmp/whitelist.txt 1000      ## 白名单测试

 

 

详情:

https://blog.csdn.net/github_2011/article/details/79031339

你可能感兴趣的:(monkey常见命令)