How to save specific data from response data to csv file

前端 未结 3 1917
说谎
说谎 2021-01-21 19:09

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

3条回答
  •  误落风尘
    2021-01-21 19:25

    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();
    

提交回复
热议问题