4

使用 selenium 很容易,但我需要通过正确的设置启动驱动程序

所以现在我只需要它会忽略缩放级别

我的代码是:

public string path = AppDomain.CurrentDomain.BaseDirectory;
public IWebDriver WebDriver;
var ieD = Path.Combine(path, "bin");

DesiredCapabilities caps = DesiredCapabilities.InternetExplorer();
caps.SetCapability("ignoreZoomSetting", true);

现在我当前的代码只是将驱动程序的路径作为参数传递

WebDriver = new InternetExplorerDriver(ieD);

如何正确传递功能和驱动程序路径?

4

1 回答 1

9

IE 选项有一个InternetExplorerOptionsSee source,它有一个 method AddAdditionalCapability。但是,对于您的ignoreZoomSetting,该类已经提供了一个名为 的属性IgnoreZoomLevel,因此您无需设置功能。

另一方面,InternetExplorerDriver对于 IEDriver 和 InternetExplorerOptions 的路径都有一个构造函数。资源

public InternetExplorerDriver(string internetExplorerDriverServerDirectory, InternetExplorerOptions options)

以下是你如何使用它:

var options = new InternetExplorerOptions {
    EnableNativeEvents = true, // just as an example, you don't need this
    IgnoreZoomLevel = true
};

// alternative
// var options = new InternetExplorerOptions();
// options.IgnoreZoomLevel = true;


// alternatively, you can add it manually, make name and value are correct
options.AddAdditionalCapability("some other capability", true);

WebDriver = new InternetExplorerDriver(ieD, options);
于 2013-06-30T21:11:49.980 回答