APP测试中Monkey如何调试选项参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了APP测试中Monkey如何调试选项参数相关的知识,希望对你有一定的参考价值。

参考技术A 由于 monkey 在测试 app 时,我们需要作长时间的稳定性测试,比如连续测试 10 小时(monkey 不能指定时间,可以指定次数,时间可以在测试次数的日志基础上大概算出来),在测试过程中,app 很可能测试时间不久,因为碰到问题而崩溃,此时测试会停止,而达不到我们长期测试的目的,我们需要通过调试参数来让测试执行继续,主要的几个参数如下:

--ignore-crashes 指即使应用程序崩溃(Force& Close 错误),Monkey 依然会发送事件,直到事件计数达到指定的次数为止。

如:

说明:即使应用程序崩溃,Monkey 依然会发送事件,直到事件计数达到10000 为止。

--ignore-security-exceptions 指 APP 发生许可证书错误时,Monkey 依然继续发送事件,直到事件数目达到目标值为止

--ignore-timeouts 指 app 在发生 ANR(Application No Responding)错误时,Monkey 是否停止运行如果使用--ignore-timeouts 参数,即使应用程序发生ANR 错误,Monkey 依然会发送事件,直到事件计数完成,

如:

--kill-process-after-error 指 APP 发生错误时,应用程序停止运行并保持在当前状

如:

当应用程序发生错误时,应用程序停止运行并保持在当前状态,注意系统并不会结束该应用程序的进程。

也多个控制参数一起使用:

注:当 app 崩溃,发生 ANR 错误时继续测试

移动端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如何调试选项参数的主要内容,如果未能解决你的问题,请参考以下文章

app 压力测试——Monkey

移动端app性能测试——monkey

Android App Monkey 测试

App移动端测试monkey测试特定的App

APP稳定性测试-monkey执行

Monkey 命令基本参数详解