尝试在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 ??? 有什么想法吗?