前言:
这个用的是小米手机,在“开发者选项中”把 “USB调试”和“USB调试(安全设置)”两个都打开,
也可以把 指针位置 打开 来看触控点在屏幕的坐标:
2 adb 划动相册
其中
1.choice /t 1 /d y /n >nul 的1 是1秒钟滑动一次
2.adb shell input swipe 350 1000 850 1000 200
350 1000 850 1000 200 —x1 y1 x2 y2 200是精度?
chcp 65001
@echo off
echo 开始滑动
set str =100
:start
adb shell input swipe 350 1000 850 1000 200
choice /t 1 /d y /n >nul
set /a str+=1
cls
echo 滑动次数 %str%
goto start
把上述代码 粘贴到txt文件中,改成 bat文件
放在adb的文件夹中 就可以运行了
3 python 运行
我使用的是pycharm,插上手机运行这个就行了
import os
import time
i = 1
while i <= 99999999 :
os.system("adb shell input swipe 250 1000 850 1000 200")
i += 1
time.sleep(1)
问题
出现如下
adb: unable to connect for root: device unauthorized.
This adb server’s $ADB_VENDOR_KEYS is not set
Try ‘adb kill-server’ if that seems wrong.
Otherwise check for a confirmation dialog on your device
解决方法 :
手机把USB调试关闭后再开启就行了
版权归原作者 理工科的忧伤 所有, 如有侵权,请联系我们删除。