Ok I'll try explaining a bit more.
I have a large number of test cases. The request being sent for all these test cases is the same except for 1 or two values. However the request itself may change. So in order to prevent having to edit a large number of requests in all the test cases I have one request set up as a property of the test suite.
In each test cases I have a request which has a single property and nothing else. This property is the request set up in in the propertys. The following test steps in the test case add in values to the request as needed.
However as the property in the request has changed and the original property is no longer there I dont know how to change it back!This means if I change the request in the suite property and run the tests again they dont get populated with the new request.
My questions are therefore:
1. Is it possible to use groovy or some other method to "reset" a reguest in a test case or set it back to the original request (which was just a simple property placeholder)
2. Or is there another way to use a single request in multiple test cases in such a way that when I change the request it changes in all test cases also?
Thanks