Val cl=List("apple","dell")
Val scn= scenario("test")
.exec(http("login").get("/login"))
.during(15 minutes)
{
Pace(10 seconds)
.foreach(cl,"name")
{
exec(http("getvalues").get("/getName /"+"${name}"))
}
}
Can not get the list values in the place of "${name}" in the get request.
Instead of apple or dell its taking just ${name}
Any pointers what i am doing wrong here.
Thanks in advance