I am using SOAPUI for web service testing. I would like to do xml parsing via groovy script Test Step. For one test case, I have to insert xml tag [like <Email>[email protected]</Email>] in SOAP Request.
I can set value to xml tag using holder.setNodeValue(Xpath, Value), Using the same function I try to insert xml tag in SOAP request like holder.setNodeValue(Xpath, "<Email>[email protected]</Email>"). But in SOAP request xml tag set as
"<Email>[email protected]</Email>"
Because of this problem SOAP request not recognize that xml tag, Hence the value not get reflect /update in response.
Please correct me If I am using this function wrongly. Awaiting response from anyone..