02-26-2024 08:33 PM
Good day,
I have a computer that fails a test intermittently, but if immediately after the part fails, I test it on another computer it passes without any problem.
Pins and wiring have already been discarded.
My question is how can I create a loop for that test in the sequence?
I had used this custom loop:
Loop Initialization Expression: RunState.LoopIndex = 1
Loop Increment Expression: RunState.LoopIndex += 1
Loop While Expression: (RunState.LoopIndex==0) || (RunState.LoopIndex > RunState.LoopNumPassed ) && (RunState.LoopIndex< 4)
Loop Status Expression: RunState.LoopNumFailed< 2 ? "Passed" : "Failed"
It passed the test, but it didn't generate any errors even after removing the pin, I don't know what I did wrong.
I hope you can help me. Greetings
05-25-2024 11:50 AM
Hi,
If you go to the properties of each step it has a looping feature. ( You can also add logic to the looping i.e. try n times)
Ravi
05-29-2024 11:27 PM
Did you find something?
05-31-2024 01:37 AM
Any update?
05-31-2024 03:55 PM
5:20
https://youtu.be/pLvO0xo-vNU?si=KPfNNEkBDVLftwVR
06-12-2024 07:56 PM
I still can't find the solution