gpt4 book ai didi

java - 我如何处理允许使用带有 Java 的 Selenium Webdriver 的 firefox 插件的弹出窗口

转载 作者:行者123 更新时间:2023-12-05 07:45:53 25 4
gpt4 key购买 nike

同时自动化包含 Vidyo 网络播放器插件的网页。如果我导航到视频页面,则会显示允许弹出窗口。我尝试使用以下代码来处理允许弹出窗口。但它不起作用。

下面是正在使用的代码,

FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("security.mixed_content.block_active_content", true);
profile.setPreference("security.mixed_content.block_display_content", false);
WebDriver driver = new FirefoxDriver(profile);

enter image description here

有人可以帮忙吗?

提前致谢。

最佳答案

引用 this回答,您可能需要为扩展获取文件并使用以下内容:

File file = new File("path to extension file");    
FirefoxProfile profile = new FirefoxProfile();
profile.addExtension(file);
WebDriver driver = new FirefoxDriver(profile);

关于java - 我如何处理允许使用带有 Java 的 Selenium Webdriver 的 firefox 插件的弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41146219/

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