gpt4 book ai didi

c# - 通过 Options 类或 DesiredCapabilities 禁用 IE 弹出窗口阻止程序

转载 作者:太空宇宙 更新时间:2023-11-03 10:32:46 24 4
gpt4 key购买 nike

我知道这可以手动完成一次,方法是转到工具>Internet 选项>隐私 并取消选中打开弹出窗口阻止程序。问题是如果我在另一台机器上运行这些测试,与弹出窗口相关的测试将失败。有没有办法使用 Internet ExplorerOptionsDesireCapabilities 来完成此操作。我已经尝试过选项

var options = new InternetExplorerOptions { EnableNativeEvents = false };
options.EnsureCleanSession = true;
options.UnexpectedAlertBehavior = InternetExplorerUnexpectedAlertBehavior.Dismiss;

我试过了

InternetExplorerUnexpectedAlertBehavior.Accept;

但是,没有用。仍然阻止弹出

enter image description here

最佳答案

导入这个 - Microsoft.Win32

RegistryKey regKey = default(RegistryKey);
regKey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Internet Explorer\\New Windows", true);
regKey.SetValue("PopupMgr", 0);
regKey.Close();

关于c# - 通过 Options 类或 DesiredCapabilities 禁用 IE 弹出窗口阻止程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29306871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com