InterviewSolution
| 1. |
What are the various data parameterization options in JMeter? |
|
Answer» Data parameterization allows test scripts to be reused by removing the need for hardcoding values for the same request with varied parameters. In a SINGLE test script, parameterization is the process of establishing distinct datasets for different users. For instance, in the same script, executing numerous users with different credentials. As a result, it's one of the most important components of creating performance testing. The data parameterization provided by JMeter is listed below:
You can also specify variable/user values in UDV. This COULD be useful in instances where two users should use the same value and the next two users should use a different value. Also, if you declare a variable at the Test Plan/Thread Group level and then have the same variable with a different value inside one of two thread groups or a specific sampler. In this scenario, the local variable will override the GLOBAL variable. |
|