'How to automate the creation of Table data on Jmeter when using aggregate report?
Table dataI want to obtain the Table Data created by the aggregate report used in Jmeter 5.3 but i cannot find the way. I don't know if i can can do it using a BeanShell PostProcessor or executing my script in the terminal.
I didn't found the way to get this solution please help
Solution 1:[1]
The easiest option would be going for JMeterPluginsCMD Command Line Tool, you can automate the process of generating the CSV version of the aggregate report from the .jtl results file by executing the following command:
JMeterPluginsCMD.bat --generate-csv /desired/path/to/aggregate/report.csv --input-jtl /path/to/your/test/result.jtl --plugin-type AggregateReport
More information: How to Use the JMeterPluginsCMD Command Line
P.S. Since JMeter 3.1 you should be using JSR223 Test Elements and Groovy language for scripting
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dmitri T |
