还未发布过话题
  • 还有一个问题,我用了-t 参数去设置 monkey 运行的时间,但是都到时间了 Monkey 却并没有停止运行,请问这是为啥
    命令:sudo smart_monkey -a com.example.monkeytest -w [UDID] -t 3600,从开始运行到现在已经 1.5 个小时,monkey 还没有停止。
    /smart_monkey_result/report_20150728XXX/custom.js 中设置如下:
    #import "UIAutoMonkey.js"
    #import "tuneup/tuneup.js"

    // Configure the monkey: use the default configuration but a bit tweaked
    monkey = new UIAutoMonkey();
    monkey.config.numberOfEvents = 99999999; // total number of monkey event
    monkey.config.delayBetweenEvents = 0.05;

    /custome_cfg/custom.js 中设置如下:
    #import "UIAutoMonkey.js"
    #import "handler/buttonHandler.js"
    #import "handler/wbScrollViewButtonHandler.js"
    #import "tuneup/tuneup.js"

    // Configure the monkey: use the default configuration but a bit tweaked
    monkey = new UIAutoMonkey();
    monkey.config.numberOfEvents = 50; // total number of monkey event
    monkey.config.delayBetweenEvents = 0.05;

  • 修改了/CrashMonkey4iOS/custom_cfg/custome.js 文件中的 action weight 并且添加了一条 buttonhandler,但是在测试结果 smart_monkey_result/report_2015_0728XXXXX 中的 custom.js 跟 custome_cfg 路径下的 custome.js 并不一样,看起来我做的修改并没有生效,请问是修改完还需要做什么才能让这个配置生效吗