Postman生成测试报告
2024年10月28日小于 1 分钟
Postman生成测试报告
1. 安装nodejs
- 安装
- nvm包管理器安装
- nvm可以安装多个不同版本的node,并且能自由切换node的版本。
- 手动安装:
- 双击 .msi 文件,一路下一步安装即可。无需特殊设定。
- nvm包管理器安装
- 测试安装成功
- node -v
- npm -v
2. 安装扩展
安装newman
npm install -g newman
测试安装成功
- newman -v (newman: required node version >=16)
安装newman插件 - 扩展版
- npm install -g newman-reporter-htmlextra
3. 运行脚本
格式
- newman run 用例集配置_.postman_collection.json -e 环境配置.postman_environment.json -d 数据文件.json/数据文件.csv -r htmlextra --reporter-htmlextra-export 测试报告名称.html
- -e 和 -d 是 非必须的。
- 如果没有使用环境,不需要指定 -e
- 如果没有使用数据文件(做参数化),不需要指定 -d
举例
newman run ./DJY-OA.postman_collection.json -e ./DJY-OA.postman_environment.json -d ./参数化-登录.json -r htmlextra --reporter-htmlextra-export 测试报告.html