Sample Web Driver Program for IE browser
package com.sample; import org.openqa.selenium.WebDriver; import org.openqa.selenium.ie.InternetExplorerDriver; public class IETest { public static String GOOGLE_HOME_PAGE = "https://google.com"; public static void main(String[] args) { System.setProperty("webdriver.ie.driver", "C:/Users/u405905/Desktop/seleniumDrivers/IEDriverServer/IEDriverServer.exe"); WebDriver driver = new InternetExplorerDriver(); driver.get(GOOGLE_HOME_PAGE); } }