Configuring JMeter Part 2 - How to configure HTTP sampler?
In here we are going to see the continuation of configure JMeter post. We will see how to change settings of HTTP sampler .
In the jmeter installed bin directory(in my case C:\apache-jmeter-2.8\bin), we get a file named jmeter.properties. Open this with note pad. We can find various properties which are activated and some are not yet activated. If we change settings by editing following.
-To set Max redirects in a single sequence[default 5]
httpsampler.max_redirects=5
-To set Max frame/iframe nesting depth[default 5]
httpsampler.max_frame_depth=5
-To set Max await timeout (sec) when concurrent download embedded resources (default 60)
httpsampler.await_termination_timeout=60
-To set no separate container for embedded resources
httpsampler.separate.container=true
-To set ignore download fails
httpsampler.ignore_failed_embedded_resources=false
Thanks..:)
In the jmeter installed bin directory(in my case C:\apache-jmeter-2.8\bin), we get a file named jmeter.properties. Open this with note pad. We can find various properties which are activated and some are not yet activated. If we change settings by editing following.
-To set Max redirects in a single sequence[default 5]
httpsampler.max_redirects=5
-To set Max frame/iframe nesting depth[default 5]
httpsampler.max_frame_depth=5
-To set Max await timeout (sec) when concurrent download embedded resources (default 60)
httpsampler.await_termination_timeout=60
-To set no separate container for embedded resources
httpsampler.separate.container=true
-To set ignore download fails
httpsampler.ignore_failed_embedded_resources=false
Thanks..:)