public void setup() { dr = new ChromeDriver(); // dr.Manage().Window.Maximize(); dr.Navigate().GoToUrl("http://172.17.3.13"); // dr.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5)); TestClassSuite.TestSuite(dr); // Call the TestSuite Class by calling object and passing public variables }
public void setup() { // dr = new ChromeDriver(); IWebDriver dr = new ChromeDriver(@"E:\Suman\Softwares\Cell\Visual Studio\Driver"); dr.Navigate().GoToUrl("http://172.17.3.13"); dr.Manage().Window.Maximize(); // dr.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5)); TestClassSuite.TestSuite(dr); // Call the TestSuite Class by calling object and passing public variables }