value feed is not a member of io.gatling.core.feeder.RecordSeqFeederBuilder[String]

Why are you using random?
I don’t think you can use this function since your file has just 2 lines.

I just remove .random and try .also getting the same error any idea pls share
23:13:36.569 [ERROR] i.g.c.ZincCompiler$ - C:\Users\Qasecure002\Downloads\gatling\gatling\user-files\simulations\RecordedSimulation.scala:74: value feed is not a member of io.gatling.core.feeder.RecordSeqFeederBuilder[String]

object Login {
val userCredentials = csv(“Bank.csv”)
.feed(userCredentials)
val login = exec(http(“Login”)
.post("/SampleApplication/login")
.headers(headers_0)
.check(status.in(200 to 210)) // check status is in a range
.check(regex("""(.*?)""").find .saveAs(“textcheck”)) //Using RegEx fn capture the textcheck
.check(
regex(“All Transaction Summary”).find(0).exists ) //Verifies that there are at least one occurrences of “All Transaction Summary”
//.check(bodyString.saveAs(“responseBody”))//This line will print the whole response body
.formParam(“ssoId”, “${userid}”)
.formParam(“password”,"${password}")
.formParam("_csrf", “${personId}”))
.pause(48)

I don’t know so much about GAtling. I’m learning it too.
the Banks.csv file is in data directory?

Hi Flavio,

Yes, the file is in the correct path.i too check with that. Thanks for you great support and valuable time.

Regards
Krishna