Multiple variables showing in dropdown list
I believe this has been discussed previously, but I could not find the post.
Is there a way to remove duplicate variables from the dropdown list?
Answers
-
I believe this has been discussed previously, but I could not find the post.
This one is slightly related. I described how variables are scoped and initialized:
Looping through DS uses last occurrence of variable in subsequent runsIs there a way to remove duplicate variables from the dropdown list?
No, not at this time. All variables and data bank columns in scope are listed. Currently, nothing prevents you from defining multiple things with the same name. So, they all get listed regardless of name. During test execution, only one thing can be assigned a given name, and the last value written with the selected name is what gets used.
0