How can i make two instance of selenium driver ?? i used these codes and i am having a problem.
SafariDriver sf = new SafariDriver();
sf.Navigate().GoToUrl("http://marathonbet.com/");
SafariDriver sf2 = new SafariDriver();
sf2.Navigate().GoToUrl("http://bet365.com/");
here is the screenshot: http://sdrv.ms/1fDzQYT
you can instantiate 2 instance of selenium webdriver, use the code below.
You need to instantiate WebDriver object with SafariDriver, that you were not doing correctly.