从命令行运行postman脚本及生成测试报告-晒酷学院

晒酷学院:https://shareku.ke.qq.com/
从命令行运行postman脚本及生成测试报告-晒酷学院_第1张图片            从命令行运行postman脚本及生成测试报告-晒酷学院_第2张图片
微信号:添加请注明晒酷学院         QQ群:979438600

           
本节建议直接看postman官网:https://www.npmjs.com/package/newman

环境准备:

  • 安装nodejs和npm 参考 https://www.runoob.com/nodejs/nodejs-install-setup.html
  • 导出collection
  • 安装newman

第一步:导出collection,选择collection v2

从命令行运行postman脚本及生成测试报告-晒酷学院_第3张图片

第二步:安装newman,出现以下内容说明安装成功

从命令行运行postman脚本及生成测试报告-晒酷学院_第4张图片

第三步:使用命令行生成测试报告,前置条件,进入到v2ex.postman_collection.json同级目录

newman run v2ex.postman_collection.json -d test_data.json -r html,cli,json,junit//命令行

在这里插入图片描述

第四步:查看测试报告

方式一:在命令行查看测试报告:
从命令行运行postman脚本及生成测试报告-晒酷学院_第5张图片
方式二:查看html测试报告,当我们执行newman run v2ex.postman_collection.json -d test_data.json -r html,cli,json,junit 这条命令,会在v2ex.postman_collection.json同级目录生成一个newman文件,我们打开里面的html文件
从命令行运行postman脚本及生成测试报告-晒酷学院_第6张图片
从命令行运行postman脚本及生成测试报告-晒酷学院_第7张图片
从命令行运行postman脚本及生成测试报告-晒酷学院_第8张图片

你可能感兴趣的:(Postman,postman)