Groovy script query
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Groovy script query
I design 3 Groovy scripts as script-1,2 and 3.now I tried to call this all groovy script 1 by 1 in another script as script-4 i.e -if first script is passed then switch/call to next script.how to design this approach(need script),is it possible?
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can try this code:-
tStep = tCase.getTestStepByName("script1") def runner = tStep.run(testRunner, context)
if(runner.hasResponse()){ //Call another script like this tStep1 = tCase.getTestStepByName("Script2") def runner1 = tStep1.run(testRunner, context) }
Hope, this helps you out.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi everyone,
Thank you so much for sharing the code, @avidCoder!
@amarnath1234, does it work for you, or do you have any additional details on the case?
If it does, don't hesitate to mark the reply with the code as a solution to this case. This makes the search for the answer easier in the future for other users.
We are looking forward to hearing from you
Olga Terentieva
SmartBear Assistant Community Manager
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
this is not working, i got error.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Could you please elaborate it properly that what kind of error you are getting and also if you could share the picece of code you have used?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
this is working fine,Thanks.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If it is working fine. Could you please accept as a solution so that other users get benefited whenever they come accross?
