InterviewSolution
| 1. |
What Are Controllers And Its Types? |
|
Answer» JMeter has TWO types of Controllers: Samplers Controllers : Samplers allow JMeter to send specific types of requests to a server. They simulate a user's request for a page from the target server. For example, you can add a HTTP Request SAMPLER if you need to perform a POST, GET, DELETE on a HTTP service Logical Controllers : Logic Controllers let you control order of processing of Samplers in a THREAD. Logic Controllers can change the order of request coming from any of their child elements. Some examples are: ForEach CONTROLLER, While Controller, Loop Controller, IF Controller, Run Time Controller, Interleave Controller, Throughput Controller, Run Once Controller. JMeter has two types of Controllers: Samplers Controllers : Samplers allow JMeter to send specific types of requests to a server. They simulate a user's request for a page from the target server. For example, you can add a HTTP Request sampler if you need to perform a POST, GET, DELETE on a HTTP service Logical Controllers : Logic Controllers let you control order of processing of Samplers in a Thread. Logic Controllers can change the order of request coming from any of their child elements. Some examples are: ForEach Controller, While Controller, Loop Controller, IF Controller, Run Time Controller, Interleave Controller, Throughput Controller, Run Once Controller. |
|