模拟点击
adb shell input tap [x y]
example:adb shell input tap 100 65
模拟输入文字
adb shell input text [string]
example:adb shell input text 这是输入233
模拟键盘
adb shell input keyevent [事件代码]
模拟屏幕滑动:
adb shell input swipe x1 y1 x2 y2 #从(X1,Y1)直线滑动到(X2,Y2)
模拟手指在屏幕上长按:
adb shell input swipe x1 y1 x2 y2 time #从(X1,Y1)长安到(X2,Y2)time毫秒
模拟截图:
adb shell screencap /sdcard/hehe.png
截图保存到电脑上:
adb pull /sdcard/hehe.png e:/a
python模拟cmd输入
import time
import os
os.system(“adb shell input tap 100 65”) #os.system(“要执行的命令”)
time.sleep(1)