I spent a lot of time researching it, but found that the Counter element in my test plan Jmeter was initialized only once. Happening:
I have a ForEach controller with Counter as a child. The value of Counter Max is determined by the variable. I expect this maximum counter value to be reinitialized in every loop. But this is not true. Counter max is set once and will no longer be changed in other cycles.
Of course, I can easily implement the same functionality using BeanShell Sampler (and what I'm doing now). But my question is : is there a way to reinitialize the value of counter max without scripts?
source share