我正在尝试使用selnium Web驱动程序和java打开ie11。
我的代码如下
public static void main(String[] args) {
System.setProperty("webdriver.ie.driver",
"C:\\Users\\ankit.pande\\Downloads\\IEDriverServer_x64_3.14.0\\IEDriverServer.exe");
InternetExplorerOptions options = new InternetExplorerOptions();
options.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
WebDriver webDriver = new InternetExplorerDriver(options);
webDriver.manage().window().maximize();
String url = "https://www.toolsqa.com/automation-practice-form/";
webDriver.navigate().to(url);
webDriver.close();
}
我已经更改了注册表设置和“已启用”保护模式(对于所有选项)。仍然显示
线程“主”中的异常 org.openqa.selenium.SessionNotCreatedException:意外错误 启动Internet Explorer。 IELaunchURL()返回了HRESULT 80070005 (“访问被拒绝。”)的URL'http://localhost:15641/'
错误