In SoapUI Pro V 4.5.2 I have created a data-driven test using an HTTP Test Request and a CSV file, tab-delimited, text is unquoted. Request is HTTP, response is XML. The data contains input variables and assertions for each response in the DataSource. Some of my assertions contain double quotes, ie: "123 Any St."
When I run the assertion I get a response of: XPathContains comparison failed, expecting ["""123, Any St."""], actual was ["123, Any St."]
My question is similar to this one: Xpath matches with single quotes?
but I am not using XSLT-based verification, I am using the XPath Match assertion in the HTTP Request.
The question is, how do I either disable the triple double quotes, work around them in the context of an HTTP request, or add something to my assertion data to make these assertions pass? Note that removing the double quotes from the response and thus the assertion data is not an option.