美文网首页
Mac执行adb shell 自动化点击测试

Mac执行adb shell 自动化点击测试

作者: 雨邪 | 来源:发表于2023-04-17 18:13 被阅读0次

    1.Mac执行adb shell 自动化点击测试

    保存:为自动测试.command文件

    #!/bin/sh
    cDir=$(cd $(dirname $0); pwd)
    echo "---自动测试启动---"
    #echo "当前目录:${cDir}"
    
    #次数按需修改
    number=200
    echo "测试目标:${number}次"
    
    for ((i = 0; i < number; i++)); do
      cNumber=$((i+1))
      echo "第${cNumber}次,测试..."
      #x:286 y:248 按需修改
      adb shell input tap 286 248
      sleep 1
      adb shell input tap 224 132
      sleep 1
    done
    echo "---自动测试结束---"
    

    相关文章

      网友评论

          本文标题:Mac执行adb shell 自动化点击测试

          本文链接:https://www.haomeiwen.com/subject/znucjdtx.html