newman是通过命令行去执行接口测试 同时能生成测试报告
一、安装
1.先安装node.js
2.然后按住win+r键打开命令提示页面输入npm install -g newman
二、在命令行中运行从postman中导出的json文件,也可以直接从postman里面导出文本
基本用法:newman run examples/sample-collection.json
三、生成测试报告
安装:npm install -g newman-reporter-html(页面效果比较简陋)
1、导出collection测试集.json
2、导出环境变量.json
3、导出全局变量.json
4、使用命令:
newman run examples/sample-collection.json -e 环境变量.json -g 全局变量.json -d 数据文件.csv/json -r html生成html格式的报告
四、生产更加美观的测试报告
安装:npm install -g newman-reporter-htmlextra
步骤同上:
1、去postman导出collection测试集.json
2、去postman导出环境变量.json
3、去postman导出全局变量.json
4、使用命令:
newman run examples/sample-collection.json -e 环境变量.json -g 全局变量.json -d 数据文件.csv/json -r htmlextra
第三和第四选一个下载即可
补充:从postman里面导出需要的文件,参数化运行自己写一个json文件,然后-d 文件即可(导出的文件最好都放一个文件夹里面),可以只打文件名首字然后按 tap 键可以快捷补充