Selenium firefox webdriver打开skype扩展网站作为默认选项卡。尝试更新驱动程序和浏览器

时间:2017-04-07 14:12:39

标签: selenium firefox selenium-webdriver geckodriver

1 个答案:

答案 0 :(得分:0)

以前我也遇到过这个问题。尝试使用下面的代码(我正在创建新的firefox配置文件并使用该配置文件调用浏览器)。

    FirefoxProfile firefoxProfile = new FirefoxProfile();
    firefoxProfile.setPreference("browser.link.open_newwindow.restricated", 1);
    driver = new FirefoxDriver(firefoxProfile);

让我知道它是否适合你