09-01-2016 10:45 AM
Hi,
I am trying to set up a user pop-up to ask them if they would like to repeat the last test that failed. If so... delete the result and run the sequence again.
Can anyone see what I'm doing wrong?
Chris
Solved! Go to Solution.
09-01-2016 02:22 PM
Have you seen this example? Does it work for you?
09-02-2016 02:45 AM
That works...
Thanks jigg
09-08-2016 03:22 AM
Hi Jigg,
I have put tried the link you sent me and made a *.seq but it fails the overall result if i fail one of the tests, retry and then pass on 2nd attempt
can you see what I am doing wrong
(For some reason i had to re-name the *.seq to *.VI so you would need to rename it back)
Thanks
Chris
09-08-2016 03:27 AM
sorry for some reason it will not let me send the seq
will carry on trying...
09-08-2016 03:29 AM
you will need to rename the file to retry.seq
09-08-2016 09:13 AM
Add this to your PostExpression of the Message Popup Step in your SequenceFilePostStepFailure callback:
RunState.Caller.SequenceFailed = (Step.Result.ButtonHit == 2)
Hope this helps,
09-12-2016 01:36 AM
Thanks Jiggawax