Reputation: 986
I'm trying to use a User Defined Variable as the Input variable in a ForEach Controller, but the HttpRequest inside the ForEach never fires.
Is userList not in scope? Do I need to make it an array?
Upvotes: 0
Views: 1144
Reputation: 168072
ForEach Controller expects JMeter Variables to look like:
var_1
var_2
var_3
So you need to amend your User Defined Variables to look like
and ForEach Controller to look like:
this way you get what you're looking for:
Upvotes: 1