Unable to launch IE 11 when running selenium with IEDriverServer 3.9.0.0
问题 I'm having issues launching IE 11 when I run my selenium tests. Here is the code I am using to setup my browser if (browser.equalsIgnoreCase("ie")) { System.setProperty("webdriver.ie.driver", "IEDriverServer.exe"); driver = new InternetExplorerDriver(); } else { throw new Exception("Browser is not correct"); } driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); driver.get("https://www.google.com/"); Dimension dimension = new Dimension(800,600); driver.manage().window().setSize