Forum Discussion

amarnath1234's avatar
amarnath1234
Contributor
6 years ago
Solved

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?

  • avidCoder's avatar
    avidCoder
    6 years ago

    If it is working fine. Could you please accept as a solution so that other users get benefited whenever they come accross?

6 Replies

  • avidCoder's avatar
    avidCoder
    Super Contributor

    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. 

    • Olga_T's avatar
      Olga_T
      SmartBear Alumni (Retired)

      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 :smileyhappy:

       

       

      • avidCoder's avatar
        avidCoder
        Super Contributor

        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?