NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Operator Verification

I have several steps in a test sequence that require operator visual verification that a test passed.  What is the best way to implement a user acknowledgement that an individual step passed before proceeding to the next step?

0 Kudos
Message 1 of 2
(1,825 Views)

One way is to make a code module, say in LabVIEW, that is a dialog box and the operator chooses pass or fail.  This VI would return a boolean and is called in TestStand as a "Pass/Fail Test" with that boolean set to Step.Result.PassFail

 

Another way would be to make a "Message Popup" step.  In "Text and Buttons", make Button 1 say "Pass" and Button 2 say Fail.  Then, in the Post Expression, add "Step.Result.Status = (Step.Result.ButtonHit==1 ? "Passed" : "Failed")

 

Pulido Technologies LLC

0 Kudos
Message 2 of 2
(1,813 Views)