org.openqa.selenium.remote.service.DriverService$Builder.createArgs()Lcom/google/common/collect/ImmutableList; with Selenium 3.5.3 Chrome 76

This error message… java.lang.AbstractMethodError: org.openqa.selenium.remote.service.DriverService$Builder.createArgs()Lcom/google/common/collect/ImmutableList; …implies that there is some incompatibility between the version of the binaries you are using specifically with the guava dependency. You are using chrome= 76.0 You are using the following: <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-chrome-driver</artifactId> <version>3.5.3</version> <scope>test</scope> </dependency> Your Selenium Client version is 3.5.3 which is more then 2 years older. Your … Read more