4

我正在尝试使用以下代码在本地计算机上启动 IE11 浏览器。

try{System.setProperty("webdriver.ie.driver", "src/main/resources/bin/IEDriverServer.exe");
            }
            catch (Exception ex){
                Reporter.log("\nException in getting and setting the webdriver IE driver: "+ ex.getMessage() + ex.getClass(),true);
                ex.printStackTrace();
            }
            WebDriverManager.browser = browser;
            driver = new EventFiringWebDriver(new InternetExplorerDriver());
            driver.manage().deleteAllCookies();
            driver.manage().window().maximize();

当我运行代码时,它会使用http://localhost:22414/打开浏览器,但之后无法加载。附上下面的日志。

org.openqa.selenium.remote.SessionNotFoundException: Unexpected error launching Internet Explorer. Browser zoom level was set to 125%. It should be set to 100% (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 2.16 seconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
System info: host: 'AAAAAA', ip: '123.123.123.123', os.name: 'Windows 8.1', os.arch: 'amd64', os.version: '6.3', java.version: '1.7.0_79'
Driver info: org.openqa.selenium.ie.InternetExplorerDriver

我手动尝试将浏览器缩放级别设置为 100%。即使这样,错误也会出现。

4

5 回答 5

6
DesiredCapabilities caps = DesiredCapabilities.internetExplorer();
caps.setCapability("ignoreZoomSetting", true);
aDriver = new InternetExplorerDriver(caps);

修复了问题。

于 2016-09-19T01:31:31.587 回答
5

这对我来说很好。英格尔那个缩放级别。

private static InternetExplorerOptions IeSettings()
        {
            var options = new InternetExplorerOptions();
            options.IgnoreZoomLevel = true;
            return options;
        }

public static IWebDriver ieDriver = new InternetExplorerDriver(IeSettings());
于 2019-02-25T13:10:49.070 回答
4

DesiredCapabilities 已被弃用。现在执行此操作的官方方法是使用 InternetExplorerOptions。添加这两行时,请确保在实例化驱动程序时将其作为参数传递。

InternetExplorerOptions capabilities = new InternetExplorerOptions();
capabilities.ignoreZoomSettings();
driver = new InternetExplorerDriver(capabilities);
于 2019-09-09T14:37:20.547 回答
1

它可能会解决您的问题,但是从长远来看,这可能会给您带来麻烦。否则,您可能会遇到本地鼠标事件无法正确识别坐标的问题。

解决此问题的最佳方法是实际转到 IE 浏览器并通过转到设置 -> 缩放将缩放级别设置为默认值 100%。

如果你在它,还要确保:

  • 在 Windows Vista 或 Windows 7 上的 IE 7 或更高版本上,您必须将每个区域的保护模式设置设置为相同的值。该值可以打开或关闭,只要每个区域都相同。要设置保护模式设置,请从“工具”菜单中选择“Internet 选项...”,然后单击“安全”选项卡。对于每个区域,标签底部都会有一个标记为“启用保护模式”的复选框。
  • 此外,对于 IE 10 及更高版本,必须禁用“增强保护模式”。此选项位于 Internet 选项对话框的高级选项卡中。浏览器缩放级别必须设置为 100%,以便可以将本机鼠标事件设置为正确的坐标。
  • 仅对于 IE 11,您需要在目标计算机上设置一个注册表项,以便驱动程序可以保持与它创建的 Internet Explorer 实例的连接。对于 32 位 Windows 安装,您必须在注册表编辑器中检查的键是 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BFCACHE

. 对于 64 位 Windows 安装,密钥是 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BFCACHE. 请注意, FEATURE_BFCACHE子项可能存在也可能不存在,如果不存在,则应创建子项。重要提示:在此键中,创建一个 DWORD名为iexplore.exe的值0

您可以在 IE 驱动程序github 项目页面上找到更多详细信息。

于 2016-09-19T05:11:31.663 回答
0
System.setProperty("webdriver.ie.driver",".\\browserDrivers\\IEDriverServer.exe");

DesiredCapabilities capability = DesiredCapabilities.internetExplorer();

capability.setCapability("ignoreZoomSetting", true);
                 capability.setCapability(InternetExplorerDriver.INITIAL_BROWSER_URL, "");

driver = new InternetExplorerDriver(capability);
于 2018-06-12T09:48:25.237 回答