I have a BSF post-processor added to a sampler.
The script in the post-processor is:
var array = JSON.parse(prev.getResponseDataAsString());
array.forEach(function(object)
{
OUT.println("patient_id: "+object.patientId);
OUT.println("fname: "+object.fname);
OUT.println("lname: "+object.lname);
});
now i want to use object.patientId, object.fname, object.lname values as parameters in another request's parameters.
E.g.
Thread Group
- Sampler1
BSF Post-Processor
- Sampler2
I want to use the variables in the BSF Post Processor's javascript of Sampler1 as parameters in Sampler2. Is that possible?