We need to configure NeoLoad to run a test in a specific way.
When a request to the server starts (RequestA), we want to kick off the next request 500ms later (RequestB).
We don't want to wait for the response of RequestA to start RequestB (the response of RequestA is not important to our
application, since that request is aborted in "real life" by our javascript code, but the server still needs to handle
RequestA for our test).
So, we don't need "Think time" between pages, we need "Force start request after x ms" between requests.
How can we achieve this?
You should use a Fork to use parallelism:
Waiting for 500ms will be called at the same time the Request A will be executed in a separate Thread.
When I do this for nine sublevels, only the first two forks are visible in the results
Matthias answered
Matthias answered
christophe answered
Matthias posted a new question