adb -s 手机 shell monkey -p <包名> -v 5000(执行次数)
adb shell monkey -p <> -throttle 380 -v -s 3500300000 > C:\monkey_log.txt
停止:
1、adb shell
2、ps|grep monkey
3、kill 第一个数据
说明:
-v 显示日志等级 -v -v -v 三个v 显示的日志最多详情
-s 随机数生成器
--throttle <milliseconds> 事件之间插入固定的延迟时间(毫秒)
--pct-touch <percent> 调整触摸百分比
-p <> 包名
--ignore-crashes 忽略崩溃直到事件计数完成
--ignore-timeout
demo
adb shell monkey -p com.xxx --throttle 380 -v 1300000
adb shell monkey -p com.xxx --throttle 380 -v -s 3500300000 > C:\monkey_log.txt