'JMeter - Blazemeter recorded scripts - How to remove CSS from the View Results Tree
I have recorded the scripts using blazemeter for login module and imported the JMX file into JMeter and run the scripts.
In listener -> View Results Tree-> I have got the output as 404-page not found with the error in CSS file.
How to exclude CSS from the results.
Need to remove the CSS scripts from the result. Where do I need to exclude css scripts without using HTTPS Test Script Recorder.
Solution 1:[1]
There are 2 options:
Untick this box under "Advanced" tab of the HTTP Request Defaults:
this way JMeter won't fetch so called "embedded resources" like images, scripts, styles, fonts, etc. But be aware that real browsers actually do request this content and its "weight" in kilobytes is much more than the main response so I wouldn't discard this
Configure JMeter to ignore the failures of the embedded resources by adding the next line to user.properties file (lives in "bin" folder of your JMeter installation)
httpsampler.ignore_failed_embedded_resources=trueJMeter restart will be required to pick the change up.
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 |

