From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

parameters.continuetesting

Solved!
Go to solution

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 ?

0 Kudos
Message 1 of 3
(4,349 Views)

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 !

0 Kudos
Message 2 of 3
(4,344 Views)
Solution
Accepted by topic author NikolajEgeskovOstergaard

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

 

0 Kudos
Message 3 of 3
(4,329 Views)