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 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}")
)
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