I wrote about using IntelliJ. A reader asked me, What about an Eclipse version?
With this blog post, I will walk you through downloading Eclipse IDE for Java Developers, installing Buildship (the official Gradle plugin for Eclipse), setting up your Java environment, configuring Gradle, installing ChromeDriver, and creating quick-and-dirty WebDriver JUnit Tests, making assertions in the tests using Hamcrest, and refactoring those tests when we come across duplicate code.
This is a different setup than programming projects I have done before. We are using:
- Eclipse with Buildship will be the Integrated Development Environment (IDE).
- Gradle to handle our dependencies, instead of Maven
- JUnit 4.11 as a test framework instead of TestNG.
- Hamcrest to handle the asserts, instead of the usual AssertTrue or AssertFalse found in JUnit or TestNG.
If you want to be seen as a programming rock-star, learn to code in vim or emacs on a Unix command line. Me, I am more of a visual person and need the crutch of an IDE while coding.

