前言
前段时间在社区中发了一篇持续集成中 Android 稳定性测试的帖子,https://玩技博客.com/topics/16909.
现在做了一个开源版本的,完全脱离主项目、优化一些代码、增加了一些性能数据统计.文章源自玩技e族-https://www.playezu.com/193512.html
项目地址:https://github.com/xinxi1990/maxauto.git文章源自玩技e族-https://www.playezu.com/193512.html
功能点:
使用开源工具 Maxim 进行 Monkey 测试,包含如下功能:文章源自玩技e族-https://www.playezu.com/193512.html
1.安装测试文章源自玩技e族-https://www.playezu.com/193512.html
2.启动测试文章源自玩技e族-https://www.playezu.com/193512.html
3.登录测试文章源自玩技e族-https://www.playezu.com/193512.html
4.Monkey 测试文章源自玩技e族-https://www.playezu.com/193512.html
5.性能数据统计文章源自玩技e族-https://www.playezu.com/193512.html
6.崩溃日志及崩溃回溯图片文章源自玩技e族-https://www.playezu.com/193512.html
登录测试
需要在 lanuchtest/lanuchapp.py 实现登录测试,
使用 appium 进行元素定位即可文章源自玩技e族-https://www.playezu.com/193512.html
可以By.xpath、By.id,后面写元素的值.
self.driver.find_element(By.XPATH,self.sure).click()
环境依赖
1.adb 环境
brew install adb
2.appium 环境
npm install appium
3.python 库
在根目录,执行 python setup.py 会安装有 python 需要的库
邮件
需要在report/mailconfig.py中配置发件人相关信息
# 设置服务器,用户名、口令以及邮箱的后缀
mail_host = "smtp.exmail.qq.com"
mail_user = "xxxxx@xxxxx.com"
mail_pass = "xxxxx"
mail_postfix = "xxxxxx"
运行
cd到根目录下
apk_path:本地apk路径
device_name:设备号,使用adb devices查看
run_time:运行时间,单位分钟
mail_list:报告邮件人,多人用逗号分隔
python run.py apk_path device_name run_time mail_list
报告
在 report/reports 目录下生成,效果展示如下
!
结语
最后感谢@zhangzhao4444开发出 Maxim 这么优秀的工具,欢迎大家 fork 和 star.
软件功能测试工具
评论