暂时记录
adb shell input text 1234 ...............输入1234
adb shell input tap 100 0......................点击100,0
adb shell input swipe 100 0 100 200 ....从100,0划到100,200
adb shell dumpsys activity activities ......显示活动程序
adb shell am start -n ActivityName .........启动应用程序
adb shell input keyevent X..........模拟手机按键
用python批量自动运行命令行
import os os.system('adb shell input swipe 100 0 100 200')