前言:
这个用的是小米手机,在“开发者选项中”把 “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文章来源:https://www.toymoban.com/news/detail-536437.html
解决方法 :
手机把USB调试关闭后再开启就行了文章来源地址https://www.toymoban.com/news/detail-536437.html
到了这里,关于adb控制手机屏幕滑动的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!