user2094823
user2094823

Reputation: 1

How to access CSV using jmeter


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....

Thanks...

Upvotes: 0

Views: 89

Answers (1)

Hassen Bennour
Hassen Bennour

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

Related Questions