org.openqa.selenium.SessionNotCreatedException:无法在TestNG中找到一组匹配的功能

时间:2018-11-29 12:28:33

标签: selenium grid

在firefox浏览器中执行网格时,遇到错误“无法找到匹配的功能集”。

Selenium版本:3.14.0,Geckodriver:0.23.0,firefox版本:63.0

Grid code

在我的代码中: 此行代码中引发错误: d = new RemoteWebDriver(new URL(“ http://localhost:4444/wd/hub”),obj1);

1 个答案:

答案 0 :(得分:0)

请通过此链接检查gecko驱动程序,硒和Firefox版本的兼容性。 https://github.com/mozilla/geckodriver/releases 如果匹配,请编写以下代码,这对我有帮助。

FirefoxOptions fo = new FirefoxOptions();
ProfilesIni profile = new ProfilesIni();
FirefoxProfile myprofile = profile.getProfile("default");
fo.setProfile(myprofile);