Hi
I am very new to gatling and just deployed gatling 2.0 on my machine. I am trying to read values from a csv file for my URL. The format of the URL is http://<host_name>//
I got the to use .baseURL
For & I have following snippet:
val csvFeeder = csv(“ampData.csv”).random
val scn = scenario(“testRecordedSimulation”)
.feed(csvFeeder)
.exec(http(“request_0”)
.get(uri3 + “”"/"${seller_name}"/"${activity_name}"""")
.headers(headers_0)
When I run this file, I get following error: “No attribute named ‘activity_name’ is defined”
Any help would be appreciated.
Thanks