代码之家  ›  专栏  ›  技术社区  ›  Donald Shannon

使用newman从命令行运行postman集合时,什么可能导致“.json此时意外”错误

  •  0
  • Donald Shannon  · 技术社区  · 8 年前

    我试图使用newman从命令行运行postman集合。我以前也很成功,但最近的这一集让我犯了一个错误。我正在使用以下命令

    newman run [urlforjcollection] --reporters cli,json,html --reporter-json-
    export C:\outputfile.json --reporter-
    html-export C:\outputfile.html -e 
    c:\QAEnvironment.json
    

    有人知道这个问题会是什么情况吗?我的命令有什么问题吗?或者邮递员的某些设置可能导致这种情况吗?

    1 回复  |  直到 8 年前
        1
  •  2
  •   Ray    8 年前

    我在谷歌上搜索了你的错误,这似乎是命令行的问题,而不是邮递员的问题;具体来说,需要在指定文件位置时使用双引号。试试这个:

    newman run [urlforjcollection] --reporters cli,json,html --reporter-json-
    export "C:\outputfile.json" --reporter-
    html-export "C:\outputfile.html" -e 
    "c:\QAEnvironment.json"