How to setup Selenium Web driver with eclipse ..
Let us start with how to set up selenium with our java project.
The Basic requirement for this is the following.
1.Java JDK setup.
2.Eclipse setup(Any version).
3. Selenium Java Client Driver.
1.Java JDK setup: If you are new to java technology or eclipse so the first thing you need to do is, Download and install JDK in your system.You can simply download this from http://www.oracle.com/technetwork/java/javase/downloads/index.html
3. Selenium java Client Driver: You can download the selenium java client driver from http://docs.seleniumhq.org/download/ and save this into your drive.
Now when you download all the things in your system it's time to configure eclipse with a web driver. To do this we need to follow these simple steps.
1. Open you eclipse IDE.
2.Go to File > New > Java Project

3.Enter Java project name and click Finish button.
Now Java project is created.
4.Once Java project is created the next thing you need to do is configure this project with web driver.
To do this you need to follow these simple steps.
(i).Right click on your new created project and select Properties.

(ii).Click on Java Build Path.

(iii).Go to Libraries and click on "Add External JARs..."

(iv). Import all Selenium JAR file into your project and click on OK

5. Again do step 2 and click on Add Library.

6. Now select JUnit and click on Next Button.

Finally, your eclipse project configures with selenium......
Hope this will help you ...HAVE FUN FRIENDS
