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

What is API?

In general way, API (Application Programming Interface) is the intermediate software which is useful for two applications to communicate. API is the tool which is used for interaction of two applications. If developer developing any software which have multiple blocks (Modules) than developer use APIs to put them together.

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.