其他分享
首页 > 其他分享> > postman结合newman生成测试报告

postman结合newman生成测试报告

作者:互联网

前置条件:已安装nodejs,安装详情可参考链接:https://www.cnblogs.com/zhen9436/p/16617383.html


1. cmd窗口安装newman

 npm install -g newman

2. cmd窗口安装newman-html报告

 nnpm install -g newman-reporter-html

3. cmd窗口安装美化测试报告

 npm install -g newman-reporter-htmlextra

4. cmd窗口查看安装的插件

 npm list -g --depth 0

  1. 在postman中导出接口文件(步骤:1.新建文件夹,把接口全部导入此文件夹内-2.对文件夹的内容全部导出)

6. 在本地选择某个目录建个文件夹,把postman内导出的json文件放入此文件夹下


7. cmd窗口进入上个步骤文件夹内,运行postman文件并生成测试报告

 newman run test01.postman_collection.json   -r htmlextra --reporter-htmlextra-title "X项目自动化测试报告"

执行完上步骤后newman会在文件夹内自动创建个newman文件夹,文件夹内包含已生成的html测试报告文件


8. 打开html文件,浏览器内显示测试报告


newman介绍

newman是为Postman而生,专门用来运行Postman编写好的脚本; 使用newman,你可以很方便的用命令行来执行postman collections。

newman基本用法(cmd窗口):newman run 用例集.json -e 环境变量文件.json -d 全局变量文件.json -r htmlextra(报告模板) --reporter-htmlextra-title "X项目自动化测试报告(报告名称)"。

命令行选项

标签:测试报告,--,html,newman,json,文件夹,postman
来源: https://www.cnblogs.com/zhen9436/p/16627507.html