How to test property transfer as data source ?
Hi,
I'm trying various kinds of data source testing and I encounter a problem:
In my TC1 (Test Case 1) I do a REST request that returns me a JSON body with a list of 'id'
In my TC2 I want to perform a REST request with the list of 'id' as an input.
If I copy the REST request from TC1 to TC2, I can use its output to feed my DataSource and perform my second request on all my 'id' elements, which is fine. As I'd rather not copy the first request, I try the following:
In TC1, I do a property transfer to set a TestSuite property with the response JSON.
In TC2, I do a property transfer to set a TC2 property with the previous JSON response
When I want to select my data source, I select 'Property Transfer' as source step, but then, I can't select a Source Property. There is none available, even if my TC2 property has been properly set.
How could I proceed ?
Thank you