- 从哪些角度,维度来进行手机app的测试?腾讯应用perfdog
- 今天笔记文档地址https://share.mubu.com/doc/6CRe_7fZfKS
- 相关文档网址https://www.yuque.com/funcat/python.autotesting/xdw3xf
- Monkey测试
- https://developer.android.google.cn/studio/test/monkey?hl=zh-cn
- 功能
- 兼容性测试
- 性能(手机app性能)
- 流畅度
- 选机型
- fps(每秒传输帧数(Frames Per Second))
- 流畅度
- Cpu
- 内存
- 温度
- 耗电量
- 流量
- 稳定性
- 闪退,程序无响应
- Android
- 打开开发者选项
- 使用数据线(最好原装数据线)连接电脑
- Iphone
- window安装ituns
adb devices
笔记地址https://www.yuque.com/ifd39g/zdmqip/ptind0https://www.yuque.com/ifd39g/zdmqip/ptind0
逍遥模拟器127.0.0.1:21503
- Adb常用命令
- 包管理相关
- 安装,卸载,清除数据
- Adb install apk-file
- Adb uninstall
- 清除数据 adb shell pm clear pakge-name
- 查看应用列表adb shell pm list packages 3为第三方安装包
- 安装,卸载,清除数据
- 启动时间测试
- 查看当前页名称
- 包管理相关
adb shell dumpsys activity activities | findstr mFocusedActivity
- 启动时间
adb shell am start -W org.cnodejs.android.md/.ui.activity.MainActivity
- 冷启动
强制停止应用adb shell am force-stop org.cnodejs.android.md
- 热启动 应用后台运行,测试启动时间
- 返回到首页adb shell input keyevent 3
- cpu使用率
- 相关文档网址https://www.yuque.com/funcat/python.autotesting/xdw3xf
- Monkey测试
- seed值 种子值
- adb shell monkey -s 10086 -p com.android.browser -v —pct-touch 30 —pct-syskeys 10 —pct-motion 30 —pct-majornav 30 —throttle 430 1000
- 抓启动页命令
- adb logcat | findstr START