I have some Soap UI scripts running nicely but I want to improve it by adding support for my Test Tool's API (I'm using TestRail)
I want to have it so once a test has completed in Soap it sends the relevant API request and the test case is updated in my test tool dependent on the response.
My problem is I'm quite new to SOAP and I'm unsure of the best way to handle this. Essentially all I need is a property to be of an integer value depending on the response from a previous test.
e.g. I call a web service and the response comes back with a "success" value of "true"
I want to then have some logic which reads this response, and then changes a test case level property to an integer value of 1 or 2 depending on the response. I will then use this value to pass to my api call within another soap test which will update TestRail.
I'm guessing this will probably lead to Groovy scripting, which I haven't done, I'm just wondering on the best way to handle this as I don't know how to reference the response of another test in a Groovy step.
Appreciate any help in advance :)