首页 文章

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

提问于
浏览

1 回答

  • 0

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

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

    请让我知道这对你有没有用

相关问题