我在指定驱动程序应满足的功能时遇到了问题。我需要一个浏览器实例来阻止弹出窗口。(一定有)
能力代码:
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 允许弹出窗口不应该。
与网格集线器的连接是正确的,因为驱动程序确实可以工作,但不幸的是,设置并没有按照预期的方式设置。
有人可以帮我吗?