Merge branch ‘master’ of gitee.com:mikb/automated-testing Conflicts:test.txt
Merge branch ‘master’ of gitee.com:mikb/automated-testing
基于selenium,python的WebUI自动化测试框架,移动端移到android_app仓库
|-- 自动化测试 # 主目录 ├─config │ └─config.ini # 配置文件 ├─data │ └─test_data.yaml # 测试数据 ├─log │ └─...x.log # 日志文件 ├─img │ └─...x.png # 测试失败截图文件 ├─report │ ├─xml # 报告数据 │ └─html # allure报告 ├─POM # 页面对象管理 │ ├─locator #页面定位 │ └─page.py #业务封装 ├─TestCases # web测试用例 │ ├─conftest.py # pytest依赖对象初始化 │ └─*_test.py # 测试文件 ├─libs # 工具包 │ ├─__init__.py # 常用方法封装 │ ├─common # web公用方法 │ └─utils # 常用工具 ├─globalvar.py # 项目全局变量管理 ├─pytest.ini # pytest配置文件 ├─requirements.txt # 项目依赖库文件 ├─README.md #自述文件 ├─setting.py #项目相关设置 └─run.py # 主启动文件
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
UI自动化测试框架
介绍
基于selenium,python的WebUI自动化测试框架,移动端移到android_app仓库
软件架构
设计原则
安装教程
目录结构
使用说明
实现功能
待开发