You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by andreea raluca <ma...@yahoo.com> on 2011/11/16 15:35:59 UTC

random variables

Hello,
I have a small problem with 3 randomized variables. 
Test group
+ Random Var1 (min value 1, max value 255)
+ Random Var2 (min value 1, max value 255)
+ Random Var3 (min value 1, max value 255)
+ In HTTP request I concatenate these variables ${Var1}.${Var2}.${Var3}
+ In View result tree in request var1=var2=var3
This happens only if configuration of the config element is similar.
As workaround solution – is to random the variables in HTTP request: ${__Random(0,255)}.${__Random(0,255)}.${__Random(0,255)}
Thanks