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

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

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

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

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

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

bash 复制代码
adb shell wm size

屏幕分辨率 横 10802520

  • 扩展
  1. 查看 wm 命令帮助
bash 复制代码
adb shell wm help

2. 解锁屏幕【没有锁屏密码,屏幕已经点亮】

bash 复制代码
 adb shell wm dismiss-keyguard
  1. 方向锁定
bash 复制代码
adb shell wm user-rotation lock

不锁定方向

bash 复制代码
adb shell wm user-rotation free
  1. 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) 模拟按下和释放物理按键 比如 home adb 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 

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

相关推荐
颜正义12 小时前
作为前端你还不会 Playwright 进行单元测试吗?
前端·测试
hubro16 小时前
ORM性能测试Benchmark(最终版)
测试·orm
独断万古他化2 天前
Python+Pytest 接口自动化测试实战 —— 抽奖系统接口测试框架设计与实现
python·pytest·接口自动化·测试·allure·yaml·json schema
殷紫川2 天前
全链路压测硬核实战:从方案落地、瓶颈根因定位到全链路性能优化
架构·测试
不做菜鸟的网工2 天前
Python 会话数压测脚本
测试
念越3 天前
第十七届蓝桥杯软件测试模拟赛1期题目及解析
蓝桥杯·测试用例·测试
独断万古他化5 天前
软件测试新纪元:为什么选择AI测试
人工智能·ai·测试
CoovallyAIHub6 天前
Django 大佬亲授:8 个 Coding Agent 工程模式,重新定义程序员价值
程序员·测试·代码规范
甜甜圈圈子6 天前
从工具到思维,AI 如何重塑软件测试全流程?
测试
小罗和阿泽7 天前
测试系列之接口测试 (一)概念测试的有关概念
测试