如何在Postman Collection Runner中查看回复?

时间:2016-09-07 13:36:29

标签: postman postman-collection-runner

我正在使用Postman Collection Runner使用迭代多次运行相同的请求。我的测试按预期工作,但我无法看到每个请求的个别响应。

是否可以在Postman Collection Runner中查看请求的响应?

5 个答案:

答案 0 :(得分:9)

在Postman的最新版本中,您可以查看每个请求的集合中的所有数据。

在Collection Runner中,单击请求名称,可以查看请求和响应的所有详细信息。

enter image description here

可以使用Request& amp;此page

的响应正文部分

答案 1 :(得分:3)

让我添加有关 shadowcharly 解决方案的更多详细信息。

如果您将responseBody变量分配给测试数组(在Tests标签中),则可能会查看您的结果

tests["body"] = responseBody

enter image description here

将其导出为json (在界面上,如果测试通过,则只看到零/一个结果)。

enter image description here

enter image description here

enter image description here

这不是很有用,但这是我找到的唯一方法。

答案 2 :(得分:3)

这可能有助于某人,我试过

  

pm.test(responseBody,true)

并在运行摘要中打印了响应。

答案 3 :(得分:0)

如果要重复完全相同的查询,可以使用测试名称来显示结果:

tests['Test to see value of key Key'+ keyValue] = testResult....

您将对收到的每个值进行不同的测试,而不是完全是日志,但效果很好;)

答案 4 :(得分:0)

我知道这已经很老了,但是邮递员在收集运行器中添加了一个功能。 enter image description here