当我运行纽曼命令时,我收到了下面的消息。我已经使用-g(全局)安装了HTML extra。但是当我创建一个Newman.js文件时,我可以执行。请告知可能出现了什么错误。“纽曼:找不到“htmlextra”报告程序请确保报告程序安装在与newman相同的目录中,请使用npm安装报告程序“
ukdjmx9f1#
从node.js命令提示符使用以下命令安装newman和htmlextra:
newman
htmlextra
npm install -g newman npm install -g newman-reporter-htmlextra
成功安装后,运行以下命令
newman run ""Reqres.postman_collection.json" --reporters=cli,htmlextra
pgvzfuti2#
必须在--reporters参数中添加单引号或双引号('',””),以便同时使用这两个参数并在cli上运行和导出HTML报告。newman run collectionName.json --reporters='cli,htmlextra'
newman run collectionName.json --reporters='cli,htmlextra'
2条答案
按热度按时间ukdjmx9f1#
从node.js命令提示符使用以下命令安装
newman
和htmlextra
:成功安装后,运行以下命令
pgvzfuti2#
必须在--reporters参数中添加单引号或双引号('',””),以便同时使用这两个参数并在cli上运行和导出HTML报告。
newman run collectionName.json --reporters='cli,htmlextra'