Skip to main content

How to open other Browsers except Firefox using Selenium Web Driver

We can best use the Selenium Web Driver with the Firefox Browser but selenium Web Driver work with other browser also. To work with other browser, we can download the driver of the browser and set property of that driver executable file with the Selenium Web Driver to make compatible with the Selenium Web driver. below i write down the code and way to make compatible the other browser with the Selenium Web Driver.

To Open the Google Chrome driver using Selenium Web driver, we need to download the chrome driver. For downloading click here

Automation Testing, Selenium Web Driver, Open Chrome Browse

Now Following code to run Chrome Browser

    package openBrowserPackage;
   
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.chrome.ChromeDriver;
   
    public class OpenBrowserClass {
        public static void main(String[] args) {
        System.setProperty("webdriver.chrome.driver","Path of Chrome Driver");
        WebDriver driver = new ChromeDriver();
        driver.get("https://www.google.co.in");
        }
    }


Top Open the IE driver using Selenium Web driver, we need to download the chrome driver. For downloading click here


Now Following code to run IE Browser

    package openBrowserPackage;
   
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.ie.InternetExplorerDriver;
   
    public class OpenBrowserClass {
        public static void main(String[] args) {
        System.setProperty("webdriver.ie.driver","Path of IE driver");
        WebDriver driver = new InternetExplorerDriver();
        driver.get("https://www.google.co.in");
        }
    }
 

Comments

Popular posts from this blog

Structural Testing

Structural Testing is the type of testing in which user should have the knowledge of the code because in this testing user need to check the structure of the system. Structural Testing is White Box Testing.

Guide to Setup Selenium Web Driver

In this Article i am describing you how to setup Selenium Web Driver in your Machine Step 1: First You need to install Java in your Computer. To download the java Click Here