每天一个安卓测试开发小知识之 (七)---常用的adb 命令第五期
hello,宝子们,最近没有更新是因为工作太忙了,刚结束完本年度答辩, 以后还会继续更新,如果有想了解的可以评论,你们的评论我都会看,笔心
上期介绍了如何通过adb命令输入文字,本期介绍如何通过adb 点击坐标
- adb命令获取手机屏幕大小(分辨率)
- adb命令点击坐标
- adb命令按下物理按键
- adb命令获取当前手机的旋转方向
- adb命令获取当前手机的折叠状态【针对折叠屏手机】
1. 获取手机屏幕大小(分辨率)
bash
adb shell wm size
屏幕分辨率 横 1080 竖 2520 
- 扩展
- 查看 wm 命令帮助
bash
adb shell wm help
2. 解锁屏幕【没有锁屏密码,屏幕已经点亮】
bash
adb shell wm dismiss-keyguard
- 方向锁定
bash
adb shell wm user-rotation lock
不锁定方向
bash
adb shell wm user-rotation free
- wm shell命令 4.1 获取帮助
bash
adb shell wm shell help
4.2 清除最近任务
adb shell wm shell recents clearAll
2. 点击坐标
bash
adb shell input tap 500 1000
查看input命令帮助
bash
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)模拟按下和释放物理按键 比如 homeadb shell input keyevent 3
bash
# 数字键 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. 获取当前手机的旋转方向
bash
adb shell settings get system user_rotation

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

4. 当前手机的折叠状态
bash
adb shell cmd device_state print-state
0 完全合上 3 完全打开 device_state 命令扩展
- 查看帮助
bash
adb shell cmd device_state
比如获取当前手机支持的状态
bash
adb shell cmd device_state print-states

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