每天一个安卓测试开发小知识之 (七)---常用的adb 命令第五期

215 阅读2分钟

每天一个安卓测试开发小知识之 (七)---常用的adb 命令第五期

hello,宝子们,最近没有更新是因为工作太忙了,刚结束完本年度答辩, 以后还会继续更新,如果有想了解的可以评论,你们的评论我都会看,笔心

上期介绍了如何通过adb命令输入文字,本期介绍如何通过adb 点击坐标

  • adb命令获取手机屏幕大小(分辨率)
  • adb命令点击坐标
  • adb命令按下物理按键
  • adb命令获取当前手机的旋转方向
  • adb命令获取当前手机的折叠状态【针对折叠屏手机】

1. 获取手机屏幕大小(分辨率)

adb shell wm size

屏幕分辨率 横 10802520 在这里插入图片描述

  • 扩展
  1. 查看 wm 命令帮助
adb shell wm help

在这里插入图片描述 2. 解锁屏幕【没有锁屏密码,屏幕已经点亮】

 adb shell wm dismiss-keyguard
  1. 方向锁定
adb shell wm user-rotation lock

不锁定方向

adb shell wm user-rotation free
  1. wm shell命令 4.1 获取帮助
adb  shell wm shell help

在这里插入图片描述 4.2 清除最近任务

adb shell wm shell recents clearAll 在这里插入图片描述

2. 点击坐标

adb shell input tap 500 1000

查看input命令帮助

adb shell input help

在这里插入图片描述 input 命令可执行的指令包括

  • tap <x> <y> (Default: touchscreen) 点击
  • swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) 滑动
  • text <string> (Default: keyboard) 输入文字
  • keyevent [--longpress|--duration <duration to hold key down in ms>] [--doubletap] [--async] [--delay <duration between keycodes in ms>] <key code number or name> ... (Default: keyboard) 模拟按下和释放物理按键 比如 home adb shell input keyevent 3
# 数字键 0-9
adb shell input keyevent 7    # 0
adb shell input keyevent 8    # 1
adb shell input keyevent 9    # 2
adb shell input keyevent 10   # 3
adb shell input keyevent 11   # 4
adb shell input keyevent 12   # 5
adb shell input keyevent 13   # 6
adb shell input keyevent 14   # 7
adb shell input keyevent 15   # 8
adb shell input keyevent 16   # 9

# 字母键 A-Z
adb shell input keyevent 29   # A
adb shell input keyevent 30   # B
adb shell input keyevent 31   # C
# ... 以此类推

3. 获取当前手机的旋转方向

adb shell settings get system user_rotation

在这里插入图片描述

命令settings表示直接操作手机设置,手机里很多设置项都可以使用 get 获取对应的值 put 设置对应的值

在这里插入图片描述

4. 当前手机的折叠状态

 adb shell cmd device_state print-state

在这里插入图片描述 0 完全合上 3 完全打开 device_state 命令扩展

  • 查看帮助
adb shell cmd device_state

在这里插入图片描述 比如获取当前手机支持的状态

 adb shell cmd device_state print-states

在这里插入图片描述

adb shell cmd 

这个命令还有很多其他功能 我们后续继续分享 每天进步一点点!!!