Forum Discussion
SmartBear_Suppo
Alumni
16 years agoHello,
The Excel DataSink needs to do some initializing and termination before and after being run for the data to be saved correctly. When the TestStep is disabled, these methods are not automatically called, and must be invoked manually. Instead of using testRunner.runTestStepByName, try this:
Regards,
Dain
eviware.com
The Excel DataSink needs to do some initializing and termination before and after being run for the data to be saved correctly. When the TestStep is disabled, these methods are not automatically called, and must be invoked manually. Instead of using testRunner.runTestStepByName, try this:
def testStep = testRunner.testCase.testSteps["update sub id in spreadsheet"]
testStep.prepare( testRunner, context )
testStep.run( testRunner, context )
testStep.finish( testRunner, context )
Regards,
Dain
eviware.com