Home > Software engineering >  How does Jmeter show the website resource in label column at summary report
How does Jmeter show the website resource in label column at summary report

Time:01-14

enter image description here

I run the HTTP request for test.

Is there any settings to show the website resource loaded in the report?

Like Label at below

/css/MyCss.css
/js/MyJS.js
/images/MyImage.jpg

......and other resources request to the Server test,not the 「Total」 one result.

Or what should I do to reach the needs I want?

CodePudding user response:

In order to enable styles, scripts and images loading you need to tick Retrieve All Embedded Resources box, the setting lives under "Advanced" tab of the enter image description here

By default requests would be named as HTTP Request-0, HTTP Request-1, etc because these requests are being executed in parallel and in the same transaction as the main HTTP Request which retrieves the enter image description here

See enter image description here

or add subresults.disable_renaming=true line to user.properties file (lives in "bin" folder of your JMeter installation). JMeter restart will be required to pick the property up.

  • Related