运行Selenium InternetExplorerDriver测试并启用加载项(插件)

时间:2015-11-13 15:20:21

标签: c# selenium internet-explorer-11

尝试在IE上运行我的测试。我需要启用我们的插件。 这是我用C#编写的代码

var options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
options.UnexpectedAlertBehavior = InternetExplorerUnexpectedAlertBehavior.Accept;
options.IgnoreZoomLevel = true;
options.EnsureCleanSession = true;
options.EnableNativeEvents = true;

driver = new InternetExplorerDriver(options);

如果在Selenium下运行,该插件将被视为无效,并且该网站要求下载该插件。

如何让InternetExplorerDriver启用我的插件? 是否像期权一样smth.PluginsEnabled = true ??? 有什么想法吗?

0 个答案:

没有答案