使用 newman 執行 postman 匯出自動化指令碼

fqivy發表於2020-11-20
  1. 首先,安裝node.js,下載地址:
    https://nodejs.org/en/download/

  2. 選擇windows 64位msi版本,進行下載,下載後,下一步,安裝即可

  3. 需要安裝好node.js,將node.js的安裝目錄配置到path環境變數,配置好後,可以在cmd中,使用
    node --version檢驗是否安裝配置成功

  4. 安裝好node.js,安裝newman,在命令列中,輸入命令
    npm install -g newman

  5. 安裝完成,安裝newman html報告生成器,執行命令
    npm install newman-reporter-html

  6. 安裝完成,開啟postman,選擇一個collection,點選滑鼠右鍵--》Export

  7. 匯出後,使用newman執行匯出的.json指令碼,執行命令:
    newman run D:\GF_13.json --reporters html --reporter-html-export d:/GF_13_result.html

生成報告如下:

newman run D:\GF_13.json --environment env.json --iteration-data data.csv --globals globals.json --timeout-request 5000 --reporters html --reporter-html-export d:/GF_13_result.html

相關文章