03-04-2016 02:47 AM
Hello,
i have the Callback SequenceFilePostStep in my testplan where i run some events.
How can i create a precondition in SequenceFilePostStep so that a step in this callback is not executed if "Result Recording Option = Disabled" for the current step?
Thanks
Solved! Go to Solution.
03-04-2016 08:22 AM
Hi OnlyOne,
If I understand the question correctly, "Parameters.Step.TS.NoResult == False" should do that for you. "[Parameters.Step].TS.NoResult" is set to true when you deselect the Record Results option for a step.
Hope this helps!
-Jack
03-04-2016 08:37 AM
Thx for your answer.
Meanwhile i found the correct parameter in RunState.Caller.Step.ResultRecordingOption which is 0,1 or.
I set my Precondition to RunState.Caller.Step.ResultRecordingOption == 1 so everything is working now.