当 运行 使用 newman 从命令行收集邮递员时,什么可能导致“.json is unexpected at this time”错误
What could cause a ".json is unexpected at this time" error when running a postman collection from command line using newman
我正在尝试使用 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
这对 运行 失败,我得到了错误。json 此时是意外的。正如我所说,我在另一个集合上使用了这个确切的命令并且它工作正常。
有谁知道这个问题的原因是什么?是我的命令有问题还是邮递员中的某些设置可能导致它?
我用谷歌搜索了你的错误,这似乎是命令行的问题,而不是 Postman 的问题;具体来说,在指定文件位置时需要使用双引号。试试这个:
newman run [urlforjcollection] --reporters cli,json,html --reporter-json-
export "C:\outputfile.json" --reporter-
html-export "C:\outputfile.html" -e
"c:\QAEnvironment.json"
我正在尝试使用 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
这对 运行 失败,我得到了错误。json 此时是意外的。正如我所说,我在另一个集合上使用了这个确切的命令并且它工作正常。
有谁知道这个问题的原因是什么?是我的命令有问题还是邮递员中的某些设置可能导致它?
我用谷歌搜索了你的错误,这似乎是命令行的问题,而不是 Postman 的问题;具体来说,在指定文件位置时需要使用双引号。试试这个:
newman run [urlforjcollection] --reporters cli,json,html --reporter-json-
export "C:\outputfile.json" --reporter-
html-export "C:\outputfile.html" -e
"c:\QAEnvironment.json"