Based on the Jmeter - Using GET/POST with single call i tried to perform GET/POST calls with single call, solution works fine if i don't use some data source.
But, i my test, i already use csv file as data source. My current set up is like:
TC_name, login_id, excpecedCode
test_with_valid_login_id,2132537288,200
test_with_unknown_login_id,11111,200
test_with_known_login_id,1,200
test_with_invalide_login_id,dsddfd,400
test_with_negative_login_id,-100,400
And, in the csv i have 5 test cases which are driven my test. If i try to add second csv, i am not able to perform both GET/POST operation for every single test cases.
I try to add
But, still i am not able to get 10 executions based on the 5 test cases present in the csv data config.
What is the easiest set up, so i can drive my test to run both GET/POST on the top of While loop driven by csv?


