11上的关闭窗口中找到元素

11上的关闭窗口中找到元素

本文介绍了无法使用Selenium在IE 11上的关闭窗口中找到元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用Selenium WebDriver在Internet Explorer 11上运行测试。
代码为:

  System.setProperty(webdriver.ie.driver,Path / to // IEDriverServer.exe); 
WebDriver driver = new InternetExplorerDriver();
driver.get(www.google.com);
driver.findElement(By.name(q));

我收到此错误:

I tried to follow the configure tutorial on https://code.google.com/p/selenium/wiki/InternetExplorerDriver but is still not working. And this code works on Firefox and Chrome.

解决方案

Try going to Internet Options --> Security --> "Enable Protected Mode" on ALL zones should either be checked or ALL unchecked.

这篇关于无法使用Selenium在IE 11上的关闭窗口中找到元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 12:20