Use request value from list of values in JMeter

前端 未结 4 1038
萌比男神i
萌比男神i 2021-02-07 04:21

I\'m sure I\'ve already done this in the past but somehow I cannot figure out how ;-) So, here\'s my problem:

I\'m trying to create a JUnit test plan in which a HTTP re

4条回答
  •  甜味超标
    2021-02-07 05:18

    There are several ways you can do this.

    • If you're only incrementing, you can use a counter element
    • You can use any number of functions to calculate the value
    • You can read from a CSV file, which is the same effect as "StringFromFile" but easier to customize and manipulate

    Given you have an array of values you could:

    • Try the pre-processor "User Parameters", creating one entry for each user/loop
    • Use a Beanshell script to create the array, select one at random and populate your variable

    You reference them exactly as you have listed: ${varName}

提交回复
热议问题