移动端app性能测试——monkey

莫道桑榆晚,为霞尚满天。这篇文章主要讲述移动端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、动作事件
【移动端app性能测试——monkey】adb shell monkey --pct-motion < percent>
5、轨迹球事件等略
具体见http://www.imooc.com/video/13017
6、忽略崩溃
--ignore-crashes
7、超时事件
--ignore-timeouts
 

    推荐阅读