一、环境
postman
node.js
newman
二、安装node.js并配置环境变量
1)在node.js官网选择合适版本的node.js下载(我使用的是node.js6,因为开始安装最新版的执行newman命令的时候老报错)
2)将D:\nodejs添加到环境变量中
3)安装newman
npm install -g newman --registry=[https://registry.npm.taobao.org](https://registry.npm.taobao.org/)
4)验证安装是否成功
#验证node
node -v
#验证npm
npm -v
#验证newman
newman -v
三、通过命令执行从postman导出的js脚本文件
newman run 脚本路径
四、生成HTML报告
注意:运行生成HTML报告命令的时候报错,是因为没有reporter-html模块,使用命令 npm install -g newman-reporter-html,-g代表全局安装,安装在node下的目录。
newman run 脚本路径 --reporters html 报告路径