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