使用newman来执行posman脚本

一.什么是Newman

简单来说使用Newman,可以让我们的Postman的脚本通过非GUI(命令行)的方式运行

二、安装

  • 首先需要安装NodeJs
  • NodeJs安装完成后,使用npm install -g newman 安装newman

三、NewMan命令

  • 使用newman run --help 可以查看帮助命令使用newman来执行posman脚本_第1张图片

  • -e 指定环境变量

  • -g 指定全局变量

  • -d 指定数据文件

  • -n 指定迭代次数,如果是使用了数据参数化,可以不用指定,会根据参数化自动算出执行每次的参数,如果没有使用数据参数化 -n相当于重复执行多少次

  • --folder 是指定postman 集合中的目录使用newman来执行posman脚本_第2张图片

  • -r 指定用于此次运行的报告类型 cli,xml,json,junit,html,htmlextra

四、使用

  • 如果postman的脚本使用了环境变量、全局变量、数据文件先将这些导入到一个文件下,报告测试的集合脚本(collection.json)使用newman来执行posman脚本_第3张图片

  • 使用命令

# -e 指定环境变量
# -g 指定全局变量
# -r 运行此次报告的类型
# --reporter-htmlextra-export 生成html的报告  (htmlextra报告增强型,比不加extra好看美观)
# 第一次运行会提示安装 newman-reporter-htmlextra  使用npm install -g newman-reporter-htmlextra进行安装
# test_report.html生成的报告文件
newman run postman_collection.json -e environment.json -g globals.json -r htmlextra --reporter-htmlextra-export test_report.html

使用newman来执行posman脚本_第4张图片使用newman来执行posman脚本_第5张图片

你可能感兴趣的:(使用newman来执行posman脚本)