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
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");
}
}
To Open the Google Chrome driver using Selenium Web driver, we need to download the chrome driver. For downloading click here
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
Post a Comment