TuTu
TuTu copied to clipboard
Take care of comments in matched xml
Currently while sending and matching for example soap request, the comments from request prevent TuTu from matching the request. Example:
This request:
<soap:Body>
<test:listStuff>
<test:rq>
<!--Required:-->
<test:environment>prod</test:environment>
</test:rq>
</test:listStuff>
</soap:Body>
Will not match this TuTu configuration:
<soap:Body>
<test:listStuff>
<test:rq>
<test:environment>@string@</test:environment>
</test:rq>
</test:listStuff>
</soap:Body>