JMeter – FTP Request

JMeter - FTP Request

Apart from HTTP and HTTPS protocols, Apache JMeter also supports FTP protocol and for which you need to add an FTP request sampler in the JMeter script. This article will help you to understand, how can you create a script using FTP, FTPS and SFTP test plans using JMeter. Why FTP testing is important? Load … Read more

JMeter – JSR223 PostProcessor

JMeter - JSR223 PostProcessor

In JMeter, JSR223 PostProcessor is a scripting-based post-processor. JSR stands for Java Specification Requests. As same as BeanShell PostProcessor which we discussed earlier; you will need to implement the post-processing logic by yourself using one of the supported scripting languages like Groovy, BeanShell, java, javascript, jexl etc. Usually, it is helpful when you need to write custom code based on some unique algorithm … Read more

JMeter – Synchronizing Timer

In JMeter, the purpose of the Synchronizing Timer is to hold the threads until X number of threads have arrived, and then they are all released at once.  It adds delays between requests such that all (defined) threads fire at the same time thus creating heavy load bursts on the application. A Synchronizing Timer can thus create large … Read more

JMeter – JSR223 Timer

JMeter - JSR223 Timer logo

JSR223 Timer is a scripting-based timer of JMeter. JSR stands for Java Specification Requests. As same as BeanShell timer which we discussed earlier; when you need to implement the thread delay logic by yourself using one of the supported scripting languages like Groovy, BeanShell, java, javascript, jexl etc. then you can use the JSR22 timer. Usually, it is helpful when you … Read more