package Browser;
import org.openqa.selenium.WebDriver; import org.openqa.selenium.ie.InternetExplorerDriver;
public class Hello {
public static void main(String[] args) {
// setting IEdriver property
System.setProperty("webdriver.ie.driver",
"paste the path of the IEDriverserver.exe");
WebDriver driver = new InternetExplorerDriver();
// launching the google home screen
driver.get("https://www.google.com/?gws_rd=ssl");
}
} //Hope this will work