等峰也等你

博客园 首页 新随笔 联系 订阅 管理

2023年12月16日 #

摘要: App 压力测试 Monkey 是 Google 提供的一个用于稳定性与压力测试的命令行工具 可以运行在模拟器或者实际设备中 它向系统发送伪随机的用户事件对软件进行稳定性与压力测试 为什么要用 Monkey Monkey 就是像猴子一样上蹿下跳地乱点 为了测试软件的稳定性,健壮性 随机点击比顺序点击 阅读全文
posted @ 2023-12-16 22:01 等峰也等你 阅读(14) 评论(0) 推荐(0) 编辑

摘要: CPU 使用情况 查看当前系统 CPU 使用情况:adb shell dumpsys cpuinfo 内存使用情况 查看当前系统的内存:adb shell dumpsys meminfo 查看某个应用的内存:adb shell dumpsys meminfo <应用名> top 命令 adb she 阅读全文
posted @ 2023-12-16 20:22 等峰也等你 阅读(27) 评论(0) 推荐(0) 编辑

摘要: adb 模拟手机按键 1、打开【指针位置】设置 2、执行 adb shell input 命令 模拟点击事件 adb shell input tap x坐标 y坐标 模拟输入事件 adb shell input text <输入内容> 模拟滑动事件 adb shell input swipe <起点 阅读全文
posted @ 2023-12-16 19:40 等峰也等你 阅读(310) 评论(0) 推荐(0) 编辑

摘要: 日志的级别 V — 明细 verbose(最低优先级) D — 调试 debug I — 信息 info W — 警告 warn E — 错误 error F — 严重错误 fatal S — 无记载 silent(最高优先级,绝不会输出任何内容) adb 命令查看日志 adb logcat 查看日 阅读全文
posted @ 2023-12-16 19:02 等峰也等你 阅读(38) 评论(0) 推荐(0) 编辑

摘要: 通过 adb 实现手机与电脑之间的文件传输 adb push 电脑路径 设备路径 adb pull 设备路径 电脑路径 阅读全文
posted @ 2023-12-16 18:44 等峰也等你 阅读(66) 评论(0) 推荐(0) 编辑

摘要: adb shell 应用 1 查看目录结构:adb shell ls 查看系统当前日期:adb shell date 查看系统 CPU 使用情况:adb shell cat /proc/cpuinfo 查看系统内存使用情况:adb shell cat /proc/meminfo adb shell 阅读全文
posted @ 2023-12-16 15:58 等峰也等你 阅读(387) 评论(0) 推荐(0) 编辑