我们可以在 postman 中读取 excel 的数据进行 js 测试吗?

Can we read data from excel in postman for js tests?

我们可以在 postman 中读取 excel 的数据进行 js 测试吗? 要么 我们可以写一个从 excel/csv/notepad.

读取数据的 js 脚本吗

我写了一些 js 脚本来自动化我的 API 测试。我正在使用 Newman 从命令提示符执行它们。

我正在用 postman 编写自动化测试。我想从 excel 导入数据用于我的测试。 可能吗? 有任何插件或任何东西可以帮助我实现同样的目标

I have a thought that using js I try to write a code which directly read/interacts file like excel/csv/notepad. Is it possible?

如有任何帮助,我们将不胜感激

如果您将 excel 导出到 csv 并且格式类似于 this file,则可以。

您也可以使用 -d <source>, --iteration-data <source>newman 执行此操作。

将要用于迭代的数据源文件 (CSV) 指定为文件路径或 URL。 Working with data files.

如果您想使用 Postman 应用程序,可以使用 Collection Runner -

The Collection Runner let’s you import a CSV or a JSON file and then use the values from the data file inside HTTP requests and scripts. We call these variables data variables. To use them inside the Postman UI, you have to follow the same syntax as environment or global variables. Having the same syntax helps you test individual requests inside Postman using dummy environment values. When you move to the Collection Runner you don't have to change anything.

博客上有更多内容 here