adb命令坐标定位及操作
adb shell settings put system pointer_location 1 打开画线 0是关闭
adb shell settings put system show_touches 1 打开触摸白点 0是关闭 画线命令
adb shell input swipe 200 1200 200 400 200是x坐标 1200-400 y坐标从下往上画 点击命令
adb shell tap 300 500 点击在x=300 y=500 位置 长按命令
adb shell input swipe 100 100 100 100 1000 在x=100 y=100 位置处长按1s 截图
adb shell /system/bin/screencap -p /sdcard/screenshot.png adb pull /sdcard/screenshot.png d:/
adb 录像 adb shell screenrecord /sdcard/1.mp4 adb pull /sdcard/1.mp4 d:/adb
使用adb指令获取手机点击坐标 https://blog.csdn.net/qq_23521659/article/details/95475787