Forum Discussion
Pavel_1
15 years agoContributor
Hi Oliver,
The runner.stop(false) will stop the entire execution (as if you would click stop button), and runner.stop(true) will stop execution of the current test item ( not your sub procedure ).
So in your case you should just exit your procedure after first message box.
Sub Main
TestA
TestB
End Sub
Sub TestA
MsgBox("A1")
Exit Sub
MsgBox("A2")
End Sub
Sub TestB
MsgBox("B")
End Sub
Related Content
- 8 years ago
Recent Discussions
- 4 hours ago