私はGatlingのドキュメントを検索しました。答えはhereでした。
2つのセクションで1)を紹介しています。 2)属性を取得する。
は基本的に言えば、属性を取得する方法は次のようになります。
// say resources.csv looks like this:
// =====================
// user,entityID
// Jim,1001
// Mike,1002
val feeder = csv("resources.csv").circular
val name = session("user").as[String] // => "Jim"
答えは次のようになります。
object REntity {
val feeder = csv("resources.csv").circular
val entity =
// ==================
// log in
// ==================
feed(feeder)
.exec(
http("example")
.post("/authentication?name=${user}")
.body(session => Utils.getCredential(session("user").as[String]))
).exitHereIfFailed.pause(Config.ThinkTime)
}
出典
2016-09-19 06:00:32
mCY