postman接口自动化

Posted mahaining

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman接口自动化相关的知识,希望对你有一定的参考价值。

第一步安装node.js:

安装教程:

https://www.runoob.com/nodejs/nodejs-install-setup.html

查看是否安装成功:

node --version

技术图片

 

第二步安装newman:

执行:npm install -g newman

第三步安装newman-reporter-html

执行:newman-reporter-html

成功截图

技术图片

第四部从postman导出json文件:

技术图片

 

第五步执行脚本:

newman run D:\\开发平台\\审核.postman_collection.json --reporters cli,html,json,junit --reporter-json-export jsonOut.json --reporter-junit-export xmlOut.xml --reporter-html-export D:\\开发平台\\htmlOut.html

生成:html ,json,xml 的结果文件,打开html 可查看测试报告

 

以上是关于postman接口自动化的主要内容,如果未能解决你的问题,请参考以下文章

Postman接口自动化

postman和接口自动化测试

使用postman+newman+python做接口自动化测试

Postman自动化接口测试

Postman自动化接口测试

API接口自动化测试框架搭建-接口调试工具postman安装配置及使用