I'm starting to evaluate SoapUI as my test suite, but the thing Transferring Property really holds me back. I read a lot of articles about this, but I could not find a way to make it work in my case.
My source is a POST request. This POST request returns me JSON. I need to pass one of the values โโof this JSON for the next test.
My answer is this:
<Response xmlns="https://localhost/authorize">
<access_token>4a00c67e</access_token>
<refresh_token></refresh_token>
<scope>auth</scope>
<token_type>online</token_type>
</Response>
I need to get <access_token>and pass it to the next test as a parameter.
What should I write in the SOURCE and TARGET blocks to make this work? Why is it so complicated and why is there no simple understanding of the tutorial about this ?: (
source
share