Hi,
I’m using Gatling 2.0.0-SNAPSHOT, my regex returns list of values:
.check(regex(""“hdnUser” value="([\w=/.\d_%±.]*)"""").findAll.saveAs(“hdnUser”))
Below just print first item:
.exec(session => {
println(session(“SiteCollection”).as[String])
session
})
How can I loop all items to get values in the list? and how to get a value by index?
Thanks in advance