Hello Gatling Experts,
Could you please advise how to get consolidated Response time for WebPage + Static resources.
I have recorded webpage navigation along with static resources, as all static resources served from server.
In following sample code, request 2-4 represent static resources for Home page.
Is there any way to get consolidated response time for Home Page + Static Resources. Please advise on this.
val scn = scenario(“Scenario Name”)
.exec(http(“Homepage”)
.get("/")
.headers(headers_1)
)
.pause(40 milliseconds)
.exec(http(“request_2”)
.get("/scripts/vendor/tags/jquery.tagsinput.css")
.headers(headers_2)
)
.exec(http(“request_3”)
.get("/assets/styles/plugins.css")
.headers(headers_2)
)
.exec(http(“request_4”)
.get("/scripts/vendor/domReady.js")
.headers(headers_2)
)
Thanks,
Raja