GitHub地址:https://github.com/defnngj/pyautoTest
pyautoTest项目结构图:
page/:用于存放page层的封装
test_dir/:测试用例目录
test_report:测试报告目录
conftest.py:ptest配置文件
run_testgs.py:测试运行文件
对于page层的封装存放于page/目录,命名规范为“xxx_page.py”
对于测试用例的编写存放于test_dir/目录,命名规范为“test_xxx.py”
每一个功能点对应一个测试类,并且以“Test”开头,如“TestLogin”,"testSearch"等
在一个测试类下编写功能点的所有测试用例,如“test_login_user_null”,"test_login_pawd_null"及“test_login_success”等
克隆与依赖安装
git clone https://github.com/defnngj/pyautoTest.git
克隆完成后切换到目录pyautoTest/下执行命令:
pip install -r requirements.txt
网友评论