How to Exit out of specific test case and terminate the entire test suite,
if (Host.Local.TryFindSingle("/form[@title='Windows Internet Explorer']/button[@text='OK']",2000, out button))
{
Report.Screenshot("/form[@title='Windows Internet Explorer']");
button.Click();
...how do I exit after click on Ok button and terminate the testsuite
Thank you in advance
Beginner