java.lang.NoSuchMethodError:带有Selenium和Java的com.google.common.collect.ImmutableSet.of([Ljava / lang / Object;)

时间:2018-12-23 05:37:43

标签: java selenium selenium-webdriver webdriver nosuchmethoderror

我正在学习日食硒。我已经添加了必需的外部.jar文件,但是在执行测试用例时仍然出现错误。

Error image

2 个答案:

答案 0 :(得分:1)

当pom文件中也有maven surefire插件时,出现此错误。删除依赖项后,chrome驱动程序可以正常运行。

答案 1 :(得分:0)

您缺少chromedriver.exe

只需将路径添加到您的chrome驱动程序中即可:

System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");

您可以看到示例here

希望这对您有帮助!