1,功能
1.可以模拟 android monkey 执行的方式,在 IOS APP 页面点击 滑动操等作,支持 ios 9 和 ios10
2,支持一台 ios 执行

下载地址: https://github.com/mengdegong/iosMonkey.git

2,准备 macaca 环境
安装 usbmuxd

$ brew install usbmuxd

安装 ios-webkit-debug-proxy

$ brew install ios-webkit-debug-proxy

安装 iso-deploy

$ npm i ios-deploy -g

安装 macacajs 包括,macaca-cli macaca-ios

npm install macaca-cli -g
EVELOPMENT_TEAM_ID=需要填写TeamID npm install macaca-ios -g

检测 macaca 环境,无报错

$ macaca doctor

3,WebDriverAgent 项目重签名
安装 app-inspector

EVELOPMENT_TEAM_ID=需要填写TeamID npm install app-inspector -g

重签名参考帖子
app-inspector 查看器

4,操作指南
1,在 iosMonkey/parameters/configure.py 文件中设置 udid/bundleId/port/proxy,port/proxy 可以默认

bundleId = 'com.bluecity.blued.qy'
port = 3456
proxy = 8900
udid = 'bad980986e328c37e478edcc81c552d291ce4024'
version = '10.2.1'

2,文件中可以修改事件的概率,概率相加应是 100%

TAP = 0.40
SWIPE = 0.30
BACK = 0.10
SUBMIT = 0.05
CONTENT = 0.05
POINT = 0.05
SHARE = 0.05

3,终端启动 macaca 服务

$ macaca server --verbose

4,运行 iosMonkey/run.py,开启无限事件测试之旅

           #######################################
           #                                     #
           #    欢迎使用 Blued iosMonkey测试       #
           #                                     #
           #######################################

[INFO]---------------------------------------------------
[INFO]测试设备: bad980986e328c37e478edcc81c552d291ce4024 
[INFO]测试App : com.bluecity.blued.qy
[INFO]---------------------------------------------------

[ RUN ] sending Event : Content->( 201 , 391 )
[ RUN ] Event number:  1 
[ RUN ] sending Swipe Event : Swipe-> [start(302.0 , 653.0 ), end( 302.0 , 74.0)]
[ RUN ] Event number:  2 
[ RUN ] sending Event : Submit->( 177 , 596 )
[ RUN ] Event number:  3 
[ RUN ] sending Tap Event : Tap->( 303.0 , 376.0 )


↙↙↙阅读原文可查看相关链接,并与作者交流