Reusable REST Request approach
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Reusable REST Request approach
can any one help the approach how to handle better ways for Re-usable REST Request (Test Steps) in multiple test cases
I have a scenarios where i need to Re-Use REST Requests in Multiples of test cases as Test Steps
What is the Best approach for this solution on ReadyAPI,
I am using Ready API 2.6v
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@678 - You can try below approach:-
def tCase = testRunner.testCase.testSuite.testCases["Name of test case"] def tStep = tCase.testSteps["test step you want to run"] tStep.run(testRunner, context)
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your help, avidCoder!
@678, is this what you are looking for?
Tanya Yatskovskaya
SmartBear Community and Education Manager
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
So,i need the place this REST Request steps in one testsuite and need to call from there where ever i required by using Groovy Script step ?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Place the rest request in its own test case then use the Run TestCase step to call the test case. If you need to pass data you can use the property transfer step to send the data to a properties step.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @678,
Did additional suggestions help?
Tanya Yatskovskaya
SmartBear Community and Education Manager
