Facing issues in my Jmeter results and few of them are listed below,
1. Multiple HTTP requests are creating for a single request, Where initial request is getting passed and rest of the duplicate requests are getting 404 error. Please check with below shown image for reference
2. Also in JMeter user.properties file below mentioned line is added,
httpsampler.ignore_failed_embedded_resources=true
But still the result is getting failed as like mentioned in the 1st issue. Is there any solution for this ?
Thanks in advance
You need to remove 1st #
symbol as it indicates line comment therefore JMeter doesn't consider this line.
Another option is passing the property via -J
command-line argument like:
jmeter -Jhttpsampler.ignore_failed_embedded_resources=true -n -t test.jmx -l result.jtl
Check out Apache JMeter Properties Customization Guide article to learn more about JMeter properties and ways of setting/overriding them
However I would rather recommend raising a product issue as HTTP 404 status codes are not very good for SEO