public void CheckIfTitleNotEquals() { RunInAllBrowsers(browser => { browser.NavigateToUrl(); AssertUI.CheckIfTitleNotEquals(browser, "This is not title "); }); }
public void CheckIfTitleNotEquals_Exception() { ExpectException(typeof(BrowserException)); RunInAllBrowsers(browser => { browser.NavigateToUrl(); AssertUI.CheckIfTitleNotEquals(browser, "This is title"); }); }