8 questions
1
vote
1
answer
65
views
Failing custom check not marked as KO in Gatling report
I have the following code to check if my response body contains a specific value. I use Gatling with Java.
I have modified the returns in ocspStatusCheck so it returns with a failure in each case, to ...
-1
votes
1
answer
205
views
Gatling Websocket Load Test
Hello I have a websocket server for a text game. The server works, I'm using it with a JS client and have also used it with Postman. At the moment I'm trying to perform a load test using Gatling ...
-1
votes
1
answer
53
views
Gatling feed batch approach individual record returns incorrect type
CSV file:
requestParam
string
string2
string3
I keep trying to get a value from an array of records like this:
ScenarioBuilder scn = scenario("Batch Processing Example")
.repeat(1).on(
...
0
votes
2
answers
469
views
How to execute each Java Gatling request with different dynamically updated values for the same virtual user?
I have this Java Gatling simulation:
package com.mycompany.performancetests;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com....