美文网首页
【Python】Android设备adb shell的一些常用命

【Python】Android设备adb shell的一些常用命

作者: 坐了整个春夏秋冬 | 来源:发表于2022-01-10 15:06 被阅读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

相关文章

网友评论

      本文标题:【Python】Android设备adb shell的一些常用命

      本文链接:https://www.haomeiwen.com/subject/htrjcrtx.html