postman 接收无法找到“htmlextra”报告程序时,我运行它在我的本地(Linux)内曼html报告生成

relj7zay  于 2023-02-04  发布在  Postman
关注(0)|答案(2)|浏览(207)

当我运行纽曼命令时,我收到了下面的消息。我已经使用-g(全局)安装了HTML extra。但是当我创建一个Newman.js文件时,我可以执行。请告知可能出现了什么错误。
“纽曼:找不到“htmlextra”报告程序请确保报告程序安装在与newman相同的目录中,请使用npm安装报告程序“

ukdjmx9f

ukdjmx9f1#

从node.js命令提示符使用以下命令安装newmanhtmlextra

npm install -g newman
npm install -g newman-reporter-htmlextra

成功安装后,运行以下命令

newman run ""Reqres.postman_collection.json" --reporters=cli,htmlextra
pgvzfuti

pgvzfuti2#

必须在--reporters参数中添加单引号或双引号('',””),以便同时使用这两个参数并在cli上运行和导出HTML报告。
newman run collectionName.json --reporters='cli,htmlextra'

相关问题