newman自动化测试实践

newman自动化测试实践

Newman是Postman的命令集工具。可以直接从命令行或Node.js项目中运行和测试Postman集合,可以方便的其他扩展模块来输出测试结果和报告。

一、安装

前置依赖条件:已经安装好node环境

npm install -g newman

二、自动化测试

1. 使用命令行
//运行本地集合
newman run <相对路径>/sample-conllection.json

//运行远程集合
newman run http://<远程域名>/sample-conllection.json


//使用环境变量
newman run <相对路径>/sample-conllection.json -e <相对路径>/sample-environment.json


//生成Json测试结果
newman run <相对路径>/sample-conllection.json -e <相对路径>/sample-environment.json -r cli,json --reporter-json-export <相对路径>/sample-report.json

//生成HTML测试报告
newman run <相对路径>/sample-conllection.json -e <相对路径>/sample-environment.json -r cli --reporter-html-export <相对路径>/sample-report.html
2. 集成在Node.js项目中
const newman = require('newman');
 
newman.run({
    collection: require('<相对路径>/sample-collection.json'),
    reporters: 'cli'
}, function (err) {
    if (err) { throw err; }
    console.log('collection run complete!');
});
3. 运行参数详情

请参考说明文档:https://github.com/postmanlabs/newman

三、自动化测试流程

newman自动化测试实践_第1张图片

你可能感兴趣的:(node,nodejs,npm)