Reputation: 1
Let us consider we have an excel/csv containing multiple columns, column1 contains the website and the other columns contain the parameters, how to perform http GET login and map parameters of each site and get the result sheet in jmeter. Can someone help in solving this issue....
Upvotes: 0
Views: 89
Reputation: 3913
you can map columns of the csv file with CSV_Data_Set_Config by setting variables names to : url,user,pwd.
after that you can use them on another components like this '${user}'
do http request HTTP_Request
and save the result with Save_Responses_to_a_file or to see them View_Results_Tree
Upvotes: 1