Reputation: 21
I want to perform load testing, so need to access atleast 30 user names and password stored in excel or csv file, so how to do this using webdriver sampler in Jmeter.
Upvotes: 1
Views: 1306
Reputation: 168002
In the WebDriver Sampler you have WDS.vars shorthand for JMeterVariables class instance so if you defined username
and password
variables in the CSV Data Set Config you should be able to use them as WDS.vars.get('username')
and WDS.vars.get(password')
in the WebDriver Sampler correspondingly
Upvotes: 4