Postman接口测试工具环境配置(基础篇)
1.Postman安装
Postman是一款非常流行的接口调试工具,前身是谷歌浏览器插件,使用简单,功能强大,为开发及测试经常使用
Postman官网下载:https://www.postman.com/downloads/
蓝奏云:https://shanqianwl.lanzoui.com/il5I5ksrx5i
2.Node.js安装
Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。是一个让 JavaScript运行在服务端的开发平台,它让 JavaScript 成为与PHP、Python、Perl、Ruby 等服务端语言平起平坐的脚本语言
官网下载地址:http://nodejs.cn/download/
Node.js安装确认:
- 打开cmd窗口
- 输入node -v
- 输入npm -v
3.Newman安装
Newman作用:Postman的一个命令行运行器,可以直接使用相关命令运行Postman导出的相关脚本,实现接口测试持续集成(趋势)
github地址:
newman:https://github.com/postmanlabs/newman
newman-reporter-html:https://github.com/postmanlabs/newman-reporter-html
安装步骤:
1)安装newman:npm install -g newman
安装效验:newman -v
2)安装newman-reporter-html:npm install -g newman-reporter-html
效验:没有红色报错信息即为正常
至此,Postman接口测试工具基础篇环境配置完成,下一章为接口测试持续集成篇环境配置,请期待