I have a question on the visibility scope of variables. I have two thread groups, each with CSV file and controller containing http request steps, testing the application.
Thread Group1
CSV file1
Controller1
Test Steps1
Thread Group2
CSV file2
Controller2
Test Steps2
Both Controllers use the values in each Thread Group's CSV file just fine. However, I then want to make a Thread Group Combined containing both Controller1 and Controller2
Thread Group Combined
CSV file1
CSV file2
Controller1
Test Steps1
Controller2
Test Steps2
The problem is that the CSV files both use the same variable name, therefore I guess Controller1 and Controller2 don't know which CSV file to use. I still want Controller1 to use CSV file1 and Controller2 to use CSV2. Will a setup like this work?
Thread Group Combined
Controller1
CSV file1
Test Steps1
Controller2
CSV file2
Test Steps2
Thanks for any help!