App性能测试 Monkey常用的命令

App性能测试 Monkey常用的命令


1.adb devices  确认手机和电脑成功链接

2.adb install(包名).apk使用命令行安装软件

3.Adb logcat | grep START    或。  aapt dump badging(app)获取app包名

4.adb shell monkey -p(包名)1000  给指定的app打压力

5.“Throttle”指定时间之间的间隔

6.adb shell monkey -p(包名)—throttle(时间)100  每隔多少时间执行一个事件

7.“seed”参数 指定随机生成数的seed值

8.Adb shell monkey -p(包名)—seed -s 100 50可以是每次执行的随机操作一致

9.adb shell monkey -p(包名)—pct-touch“—pct-touch”设定触摸事件百分比,可以只让他执行触摸事件

10.adb shell monkey -v -p(包名)—pct-touch 100 100加入-v。可以查看每一步操作

11.动作事件,设定动作百分比”—pct-motion”

 adb shell monkey -v -p(包名)—pct-touch 50 —pct-motion 30 100

12.轨迹球事件,设置轨迹球事件的百分比

adb shell monkey —pct-trackball

13.基本导航事件,设定基本导航事件百分比,输入设备的上,下,左,右

adb shell monkey —pct-nav

14.主要大航事件,设定主要导航事件百分比,兼容中间键,返回键,菜单键

adb  shell monkey —pct-majornav

15.系统导航事件,设定系统导航百分比,HOME,BACK,拨号及音量键

adb shell monkey —pct-syskeys

16.启动Activity事件,设定启动Activity的事件百分比

adb shell monkey —pct-appswitch

17.不常用事件,设定不常用事件的百分比

adb shell monkey —pct-anyevent

18.崩溃事件,忽略崩溃和异常

adb shell monkey —ignore-crashes

19.超时事件,忽略超时事件

adb shell monkey —ignore-timeouts

你可能感兴趣的:(App性能测试 Monkey常用的命令)