Hi,
How can I parse the answer if it returns text lines?
Thanks and regards.
Pablo
Hi,
How can I parse the answer if it returns text lines?
Thanks and regards.
Pablo
In my case, I needed to capture the response to evaluate each line …
var testText =
testText = pm.response.text().split(“\n”);
this will generate an array for each line.