【Python】Android设备adb shell的一些常用命
2022-01-10 本文已影响0人
坐了整个春夏秋冬
- 屏幕截图
adb shell screencap -p /sdcard/screen.png - 拉取图片
adb pull /sdcard/screen.png - 模拟滑动
从(0,0)滑动到(100,100)
adb shell input swipe 0 0 100 100 - 模拟点击
点击(186,446)的点
adb shell input tap 186 446