我正在使用jmeter和maven进行性能测试(REST) 在我的pom中,我有以下插件:
有时,有一些测试失败,我无法看到服务的响应是什么。有没有办法查看报告中的所有请求和响应?或者失败的回复?
答案 0 :(得分:0)
配置部分应该允许您启用响应和其他详细信息。尝试真实和真实。你可以在pom文件中包含插件的配置部分吗?
<configuration>
<description>This is the description of the generated report</description>
<title>Report title</title>
<showaverage>false</showaverage>
<showpercentile>false</showpercentile>
<showinfotable>false</showinfotable>
<showtimeinfo>false</showtimeinfo>
<showsummary>true</showsummary>
<showdetails>false</showdetails>
<showresponse>true</showresponse>
<showhistogram>true</showhistogram>
<showthroughput>false</showthroughput>
<showgc>false</showgc>
</configuration>