I’m new to gatling and I couldn’t find information on how to use multiple feeders in a scenario. I want to do the following
val base = “http://localhost:8480/services”
val data = csv(“biometrics_data.csv”).queue
val accessTokens = csv(“access_tokens_data.csv”).queue
val scn = scenario(“Test”)
.feed(data)
.feed(accessTokens) //adding two feeders dosen’t work
.exec(
http(“Test all individuals of Biometrics”)
.get(base+ “/v1/biometrics/${data}?access_token=${token}”)
.check(status.is(200))
)
Where ${token} comes from the feeder AccessTokens and ${data comes from data. Is there a way to do this i found no examples of doing so. Thanks