I have a bunch of SOAP request messages in XML format. Is there a way to import them to a SoapUI project?
I want to import them and add as "Test Request" Test Step to an existing Test Case.
I have a bunch of SOAP request messages in XML format. Is there a way to import them to a SoapUI project?
I want to import them and add as "Test Request" Test Step to an existing Test Case.
Copy/paste each into a new request, then right click on each request and add them to your test case.
Another option is:
Or select "Load from..." when opening the context menu in the request view.
An easy and more automatic way to do so is using a groovy script to automatically create the testStep request from a directory where you have you xml request files:
Your SOAPUI before groovy code execution looks like:
And the necessary groovy code:
Hope this helps,