In my webservices test plan, I am sending SOAP request to create user and it sends back username and unique id in the response data. I want to save that username and uniqueid in
I used this for save a number to a csv:
thanks Nachiket Kate.
folio = vars.get("folioGuardado");
f = new FileOutputStream("C:/GuardFolios/folios.csv", true);
p = new PrintStream(f);
this.interpreter.setOut(p);
print(folio);
f.close();