0


postman+Newman+Jenkins搭建详细流程

以下json文件都为postman导出文件
1.安装node
验证:node -v

2.安装Newman:npm install -g newman
验证:newman -v
| 提示无权限:sudo chown -R $USER /usr/local/lib/node_modules

3.安装html:npm install newman-reporter-html
4.优化html:npm install -g newman-reporter-htmlextra
5执行命令
newman run postman_collection.json -r htmlextra,cli
newman run postman_collection.json -r htmlextra,cli --reporter-htmlextra-title “xxx-api Testcases” --reporter-htmlextra-browserTitle “xxx Report” --reporter-htmlextra-export /Desktop/newman/test.html
在这里插入图片描述

6.其他报告模版:https://pan.baidu.com/s/12ubes9rT6eDqEVz67AImng 提取码:e3in
newman run 脚本.json -e 环境.json --reporters cli,html --reporter-html-template 你的目录\htmlreqres.hbs --reporter-html-export htmlOut.html
newman run postman_collection.json --reporters cli,html --


本文转载自: https://blog.csdn.net/qq_16510189/article/details/126441419
版权归原作者 ‘Aurora 所有, 如有侵权,请联系我们删除。

“postman+Newman+Jenkins搭建详细流程”的评论:

还没有评论