转:https://www.cnblogs.com/benben-wu/p/12513736.html
HttpRunner在做接口测试很方便,对于python代码掌握不熟练的童鞋,HttpRunner是一个不错的选择。
附上HttpRunner中文官方文档:https://cn.httprunner.org/
1、环境安装:pip install -i https://pypi.douban.com/simple httprunner
2、查看版本号:hrun -V
3、查看帮助命令:hrun --help
4、创建项目:hrun --startproject httprunner_learn
此时,环境已准备好,可以在api/demo_api.yml中写个简单的http请求,运行后自动生成报告。
demo_api.yml的demo代码如下,接口请求登录地址为本地使用django+restframework搭建的一个接口测试平台:
name: demo api variables: var1: value1 var2: value2 request: url: http://127.0.0.1:8000/user/login/ method: POST headers: Content-Type: "application/json" json: username: benben password: 123456 validate: - eq: ["status_code", 200]
运行:
hrun api/demo_api.yml --log-level debug运行完成后会在reports目录下自动生成测试报告
来源:https://www.cnblogs.com/jodie2019/p/12596452.html