1

我在指定驱动程序应满足的功能时遇到了问题。我需要一个浏览器实例来阻止弹出窗口。(一定有)

能力代码:

DesiredCapabilities caps = DesiredCapabilities().firefox();

FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("dom.popup_maximum", 0);

caps.setCapability(FirefoxDriver.PROFILE, profile);

创建驱动的代码:

WebDriver driver1 = new FirefoxDriver(caps);              // this one works
WebDriver driver2 = new RemoteWebDriver(properUrl, caps); // this one does not

工作/不工作我的意思是,driver1 有弹出窗口应该被阻止,而 driver2 允许弹出窗口不应该。

与网格集线器的连接是正确的,因为驱动程序确实可以工作,但不幸的是,设置并没有按照预期的方式设置。

有人可以帮我吗?

4

1 回答 1

0

用于FirefoxOptions自定义首选项:

FirefoxOptions options = new FirefoxOptions();
options.addPreference("dom.popup_maximum", 0);

WebDriver driver = new RemoteWebDriver(new URL("http://127.0.0.1:4444/wd/hub"), options);
于 2017-11-09T16:35:09.510 回答