gpt4 book ai didi

java - 如何在 selenium webdriver 中使用 Firefox 功能禁用网站的地理定位权限

转载 作者:太空宇宙 更新时间:2023-11-04 13:01:12 24 4
gpt4 key购买 nike

我想在 selenium webdriver 中使用 Firefox 功能禁用网站的地理定位权限,但我无法这样做。

我尝试这样做...

WebDriver d = null;
cap = cap.merge(DesiredCapabilities.firefox());
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability("geo.enabled", false);
cap.setCapability("geo.provider.use_corelocation", false);
cap.setCapability("geo.prompt.testing", false);
cap.setCapability("geo.prompt.testing.allow", false);

附件是相同的屏幕截图

enter image description here

最佳答案

我还没有尝试使用您的特定参数,但对于其他参数来说效果很好,如下所示:

FirefoxProfile profile = new FirefoxProfile();  
// Turn off updates
profile.setPreference("app.update.enabled", false);
WebDriver driver = new FirefoxDriver(profile);

使用 Selenium 2.48 和 FF 42.0(但也适用于其他版本。

关于java - 如何在 selenium webdriver 中使用 Firefox 功能禁用网站的地理定位权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34922486/

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