Azeddin_Margani
8 years agoContributor
Removing brackets [ ] from excel when added from soapui response using Groovy..
Hi, Can someone please help!. I want to remove the brackets [ text] and just leave text when reading soapui response. My intended code in Groovy: ...... //read response from xml def resholde...
- 8 years ago
getNodeValues returns an array of values so you could change that to getNodeValue for a single value
https://mytestingguide.wordpress.com/2013/05/06/soap-ui-json-groovy-scripts/
getNodeValue(xpath) returns a value of node specified by XPath expression
getNodeValues(xpath) returns an array of values specified by XPath expression