1
2
3
4
5
6
7
8
9
10
11
12
13
|
newman run A.postman_collection.json -e B.postman_environment.json -r htmlextra,cli,junit --reporter-junit-export ../reports/echo.xml --reporter-htmlextra-title "接口自动化测试报告" --reporter-htmlextra-browserTitle "测试报告" --reporter-htmlextra-template ./template.hbs --reporter-htmlextra-export ./reports/C.html
A.postman_collection.json #postman的脚本集合
B.postman_environment.json #postman的环境变量
-r htmlextra,cli,junit #指定插件htmlextra和junit
--reporter-junit-export #生成junit报告
../reports/echo.xml #生成的junit报告-用xml格式呈现
--reporter-htmlextra-title #定义报告的title名称
--reporter-htmlextra-browserTitle #定义浏览器title名称
--reporter-htmlextra-template #生成报告的模板
./template.hbs #使用的模板路径
--reporter-htmlextra-export #用htmlextra导出报告
./reports/C.html #生成到当前目录的reports并命名为C.html
|