private void startDriver()
 {
     theLifecycle = WebDriverSettings.GetBrowserLifecyle();
     theDriver = theLifecycle.Driver;
     theDriver.Navigate().GoToUrl("file:///" + "screenfixture.htm".ToFullPath());
     theFixture = new StubScreenFixture(theDriver);
 }
 private void startDriver()
 {
     theDriver = WebDriverSettings.DriverBuilder()();
     theDriver.Navigate().GoToUrl("file:///" + "screenfixture.htm".ToFullPath());
     theFixture = new StubScreenFixture(theDriver);
 }
예제 #3
0
 private void startDriver()
 {
     theDriver = WebDriverSettings.DriverBuilder()();
     theDriver.Navigate().GoToUrl("file:///" + "screenfixture.htm".ToFullPath());
     theFixture = new StubScreenFixture(theDriver);
 }