DEV Community

Discussion on: Gatling, a load testing tool with a difference.

Collapse
 
david_j_eddy profile image
David J Eddy

Sujit, Gatling uses Scala class for execution scenarios. This allows fully programmable processes to be leveraged during a test execution. In your case you will want to make the first request, capture the response, process the response, then finally provide the data to the second request. It is very doable.

Scala examples:
gatling.io/docs/2.3/http/http_check/
stackoverflow.com/questions/482784...
stackoverflow.com/questions/469656...
mwclearning.com/?p=1669 (pt. 2: mwclearning.com/?p=1678)