Luigi Izzo
Luigi Izzo

Reputation: 1

How to extract data from a feeder on gatling

I'm new with gatling and I have problem that I can't resolve by myself. I have to extract values from feeder I created, but I don't have idea how to do. Do you have any ideas how to do this? Thanks for your help.

val feeder = csv("insertPC.csv").random

Upvotes: 0

Views: 1329

Answers (1)

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34516

Suppose you have this in your CSV:

computer
Macbook
MacBook Pro

It would be something like this:

 object Search {

  val feeder = csv("insertPC.csv").random 
  val search = exec(http("Search")
         .feed(feeder)
        .get("/computers?f=${computer}");
 }

Notice the matching between CSV first row which is column name and ${computer}

Upvotes: 1

Related Questions