private void Dispose(bool disposing)
 {
     if (disposing)
         {
             if (this.startUpPage != null)
             {
                 this.startUpPage.Dispose();
                 this.startUpPage = null;
             }
         }
 }
 public SetupTestWithPage(string url)
 {
     startUpPage = new StartUpPage(SeleniumWebDriver.Browser.Chrome);
         //baseUrl = DeployURL.Host;
         baseUrl = url;
 }