I have start of loop and end of loop like int i=0 when initialized and loop should continue until i=99.
With each iteration I need to generate String with value of i like Sk+i.
With each iteration it should generate values like
sk001
sk002
...
sk099
and not only this string this loop should generate it in an specific form like
<register><name>sk001</name>
<name>sk002</name>
...
<name>sk099</name>
</register>
How can I achieve it in Jmeter?
I’ve done it using BeanShell Sampler
where ${name} is the value i get from iterating array of names.
It will concatenate old and new values.