public void GlobalSetup()
 {
     _driver = new ChromeDriver(DriverExecutablePathResolver.GetDriverExecutablePath());
 }
コード例 #2
0
 public void GlobalSetup()
 {
     _driver             = new ChromeDriver(DriverExecutablePathResolver.GetDriverExecutablePath());
     _javaScriptExecutor = (IJavaScriptExecutor)_driver;
     _driver.Navigate().GoToUrl(TestPage);
 }