标签:for lan 下载 按键 -- 问题 按钮 文件夹 fit
CrashMonkey4Android,是一个依靠Cts框架,对原生Monkey进行改造后的产物,拥有以下新增功能:
下面以Mac环境为例
同步CrashMonkey4Androd_bin 项目来获取可执行文件,或者直接下载ZIP包,解压。
解压后,项目目录结构如下:
找到tools目录下的cts-tradefed文件,双击会出现终端窗口:
(可以看出来我们支持多设备)
在终端输入命令 : run cts --plan Monkey
按return
,@Monkey开跑了。
参看报告,在tools的统计目录repository下有2个目录很重要
1. logs:保存测试过程中的截图和log信息
2. results: 保存测试报告
首先去results下打开报告,一个文件夹代表一次测试,我们刚才有2台设备,所以生成了2个报告,进入文件下找到index.html,打开:
有crash版本:
index.html
为结果总结页面,上面显示了测试设备的硬件信息(Hardware),被测应用信息(Application),测试周期(Span),结果(Results)。下方有一个表格中result显示了测试所花时间(Duration),Monkey的事件数(20)。点击result一览的链接进入详细报告:
无crash版本:
有crash版本
详细页面中显示了最后50步的操作截图(少于50的全部列出),截图上绘制了操作的类型,还可以点击图片查看该步操作的相关logcat信息。还包括3按钮(crash log按钮会在发生crash的时候显示),点击system log
可以看到系统log:
点击uiauto trace
按钮会显示所有步骤的信息:
如果有crash log
按钮,会显示crash的简短信息,目前只是简单的从logcat分析ANR和Java Crash信息,后续会详细研究一下crash知识:
我们可以通过在命令行下输入run cts --help-all
获取所有的可设置参数:
test options:
--p package of test app
--a main activity of test app
--v monkey event count Default: 20.
--throttle The delay time between the events Default: 300.
--pct-tap percentage of tap event Default: 25.0.
--pct-motion percentage of motion event Default: 0.0.
--pct-nav percentage of navigation event Default: 15.0.
--pct-majornav percentage of major navigation event Default: 15.0.
--pct-syskeys percentage of system key event Default: 15.0.
--pct-drag percentage of drag evnet Default: 30.0.
--logcat-size The max number of logcat data in bytes to capture when --logcat-on-failure is on. Should be an amount that can comfortably fit in memory. Default: 20480.
--plan the test plan to run.
--[no-]reboot Do not reboot device after running some amount of tests. Default behavior is to reboot. Default: false.
--[no-]skip-device-info
flag to control whether to collect info from device. Providing this flag will speed up test execution for short test runs but will result in required data being omitted from the test report. Default: false.
--[no-]device-unlock unlock device Default: false.
--app-path local app‘s path
--wifiSsdk wifi username
--wifiPsk wifi password
--[no-]skip-uninstall-app
no uninstall test app Default: true.
--monkey-log-size monkey log size Default: 10485760.
-b, --[no-]bugreport take a bugreport after each failed test. Warning: can potentially use a lot of disk space. Default: false.
--[no-]tracefile get trace file ,in /data/anr/trace.txt Default: false.
‘stdout‘ logger options:
--log-level minimum log level to display. Default: INFO. Valid values: [VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT]7
主要关注以下属性:
目前只实现了5/6,但是上面的数字相加一定要为100%。
因为该工具支持自动连接wifi,所以你的app需要在wifi情况下工作,请设置这两个属性,它会自动检测断网并重连
标签:for lan 下载 按键 -- 问题 按钮 文件夹 fit
原文地址:http://www.cnblogs.com/Boohee/p/6106916.html