Ejemplo n.º 1
0
 /// <summary>
 /// Try closing the window with exception handling
 /// </summary>
 public void Close()
 {
     try
     {
         selenium.Close();
     }
     catch// (Exception)
     {
         ErrorReport("Window could not be closed", CheckType.Warning);
     }
 }
Ejemplo n.º 2
0
 public virtual void TeardownTest()
 {
     try
     {
         webdriver.Close();
     }
     catch (Exception)
     {
         // Ignore errors if unable to close the browser
     }
     //Assert.AreEqual("", verificationErrors.ToString());
 }
Ejemplo n.º 3
0
 public void closeDriver()
 {
     driver.Close();
 }