欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

android monkey自动遍历测试

程序员文章站 2022-06-24 10:05:23
android monkey遍历自动测试1. monkey命令adb shell monkey -help 查看帮助命令adb shell monkey n 对所有包随机操作adb shell monkey -p com.android.settings n 对指定包adb shell monkey -p com.android.settings -s 20 80 时间种子adb shell monkey -p com.android.settings -vv 20 80详细日志时间延迟(5...

https://blog.csdn.net/weixin_45912307/article/details/109393436
1. monkey命令

  • adb shell monkey -help 查看帮助命令
  • adb shell monkey n 对所有包随机操作
  • adb shell monkey -p com.android.settings n 对指定包
  • adb shell monkey -p com.android.settings -s 20 80 时间种子
  • adb shell monkey -p com.android.settings -vv 20 80详细日志
  • 时间延迟(5s 延时)
    • adb shell monkey -p com.android.settings --throttle 5000 100
  • 事件百分比
    • adb shell monkey -p com.android.settings --pct-toch 10 1000

2. 常用事件
--pct-touch 触摸事件,如点击
--pct-motion 动作时间,如滑动(直线)
--pct-trackball 轨迹事件,如移动+点击,曲线滑动
--pct-majornav 主要导航事件,如回退按钮、菜单按钮
android monkey自动遍历测试

android monkey自动遍历测试
android monkey自动遍历测试

本文地址:https://blog.csdn.net/weixin_45912307/article/details/109393436