06-17-2015 03:34 PM
i can't change the value of parameters.continuetesting in my PreUUT callback.
I try to set the value passed on user button input, but it keeps having the value "true"...
what am i doing wrong ?
Solved! Go to Solution.
06-17-2015 04:37 PM
FYI: i can change the value in post-action of a actionstep right after getting the user input.
The exact same post-action placed in the msg-popup step does not change the continuetesting parameter !
06-18-2015 01:44 AM - edited 06-18-2015 02:05 AM
Hi,
Please change your post expression as below and it shall work.
Locals.BH =Step.Result.ButtonHit,
Parameters.ContinueTesting = Locals.BH==2 ? False:True
Ranjith