JMeter – Uniform Random Timer

As the name suggested, the JMeter Uniform Random Timer is used to generate and add the random delay in a uniform manner before the execution of a sampler. This timer is based on a random function and generates a random amount of time (delay), with each time interval having the same probability of occurring. Hence it is … Read more

How does JMeter simulate a real browser?

Just having a knowledge of how to record the script for an application and execute the test; should not be enough for a performance tester. As described in the previous article, performance testing should be realistic rather than just a simple test. To implement this concept, a performance tester should know how does a testing … Read more

JMeter – BeanShell Listener

JMeter - BeanShell Listener 01

In JMeter, BeanShell Listener is a scripting-based listener. It means that you will need to implement the listener logic by yourself using one of the supported scripting languages. Usually, it is helpful when you need to define logic based on your requirement and want to write some unique algorithm which is not currently provided by JMeter. You … Read more

JMeter – Graph Results

JMeter - Graph Results Listener

In JMeter, Graph Results Listener plots a graph between response time in milliseconds and elapsed time. The graph lines show the response time of all the requests (Data), the average response time (Average), the median of response time (Median), deviation in the response time (Deviation) and no. of samples per minute (throughput). The summarized figures can … Read more