By the way, here's the script:
package test_performance_test
import scala.concurrent.duration._
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import io.gatling.jdbc.Predef._
class TestLoadTest extends Simulation {
val scn = scenario("TestLoadTest")
val userCredentials = csv("user.csv").queue
val isbnFeeder = csv("isbn.csv").queue
// LOGIN
.feed(userCredentials)
.exec(http("EnterCredentials")
.post(uri1 + "/login.do")
.headers(headers_2)
.formParam("location", " ")
.formParam("email", "${email}")
.formParam("password", "${password}"))
.pause(13)
// SEARCH ISBN
.feed(isbnFeeder)
.exec(http("SearchISBN")
.post("/nams/nams_search.do")
.headers(headers_2)
.formParam("searchWord", "${isbn}")
.formParam("quickSearch", "search")
.formParam("rdosearch", "nams_search_titlelist"))
.pause(9)
// LOGOUT
val log_out = exec(http("Logout")
.get("/nams/logout.do")
.headers(headers_0))
.pause(1)
.exec(http("NavigateHomepage")
.get(uri1 + "/ListApplications.do")
.headers(headers_2))
}
setUp(scn.inject(atOnceUsers(100))).protocols(httpProtocol)
}