Forum Discussion

Heaven's avatar
Heaven
Occasional Contributor
16 years ago

[RESOLVED]getting problem with a groovy script

hi

version: Soap UI 3.0

the script in groovy step

     testRunner.testCase.addTestStep( "properties", "another step" );
   
adds a new propeties step in my case

but at the same time

testRunner.testCase.addTestStep( "Groovy Script", "Delay" );

is not adding a new step.
why?

please help !!
  • Hi ,

    for creating groovy test step use this code:

    testRunner.testCase.addTestStep("groovy", "delay");


    regards
    Nebojsa
  • Heaven's avatar
    Heaven
    Occasional Contributor
    Thank you
    Got the solution
    Its working fine !