How to create HTML reports using Jmeter Maven Plugin 2.1.0.

旧巷老猫 提交于 2019-12-25 10:03:27

问题


Jmeter Maven plugin 1.4 used to generate nice HTML reports but the latest plugin 2.1.0 does not create. I know for the latest plugin by default enableReports are set to false.

I would like to know how HTML reports can be enabled without usage of any other plugin in pom.xml?

or

which plugin is compatible with Jmeter Maven plugin 2.1.0 which can be used to generate HTML reports?

Thanks in advance.


回答1:


the HTML reports in 1.4 were removed because they were horrifically inefficient.

In version 2.6.0 of the plugin you can use JMeter's native report generation, just add in a config setting of:

<configuration>
    <generateReports>true</generateReports>
</configuration>


来源:https://stackoverflow.com/questions/43601944/how-to-create-html-reports-using-jmeter-maven-plugin-2-1-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!