Selenium firefox webdriver opening skype extension website as a default tab. gecko driver version -geckodriver-v0.14.0,Firefox version -52.0.2 and in control panel i cannot see any skype installtion. Skype link which is opening in new tab while invkoing firefox {{1}}
答案 0 :(得分:0)
以前我也遇到过这个问题。尝试使用下面的代码(我正在创建新的firefox配置文件并使用该配置文件调用浏览器)。
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.setPreference("browser.link.open_newwindow.restricated", 1);
driver = new FirefoxDriver(firefoxProfile);
让我知道它是否适合你