How to make two instance of selenium safaridriver?

617 Views Asked by At

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

1

There are 1 best solutions below

2
On

you can instantiate 2 instance of selenium webdriver, use the code below.


    WebDriver sf1 = new SafariDriver(); 
    sf1.Navigate().GoToUrl("http://marathonbet.com/");
    WebDriver sf2 = new SafariDriver();
    sf2.Navigate().GoToUrl("http://bet365.com/");

You need to instantiate WebDriver object with SafariDriver, that you were not doing correctly.