移动端app性能测试——monkey
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端app性能测试——monkey相关的知识,希望对你有一定的参考价值。
一、压力测试
monkey
MonkeyScript
MonkeyRunner
adb shell monkey 1000
adb logcat | gerp START获取包名和activity名
adb shell monkey -p 包名 1000
1、throttle参数
adb shell monkey --throttle<milliseconds>
2.seed参数
指定随机生成数的seed值
adb shell monkey --throttle <milliseconds> -s 100
3、触摸事件
设定触摸事件百分比
adb shell monkey --pct-touch <percent>
4、动作事件
adb shell monkey --pct-motion <percent>
5、轨迹球事件等略
具体见http://www.imooc.com/video/13017
6、忽略崩溃
--ignore-crashes
7、超时事件
--ignore-timeouts
以上是关于移动端app性能测试——monkey的主要内容,如果未能解决你的问题,请参考以下文章