I am using m2e eclipse plugin in 4.2 Juno. I see the selenium-chrome-driver-2.26.0.jar file in my maven dependencies after adding
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.26.0</version>
</dependency>
to my pom.xml file. I get the typical missing driver error
java.lang.IllegalStateException: The path to the driver executable
must be set by the webdriver.chrome.driver system property; ...
The firefox driver works (it's automatic). I am able to successfully update my project with the Maven sub menu when right clicking on the project. The maven dependecy folder is already added to my project's build path. I've looked at posts similar to these with not much luck.
How to add maven repository jars to eclipse buildpath? How to configure Eclipse build path to use Maven dependencies?