top of page

Selenium WebDriver Installation & Setup 

​

​

How TO Install Selenium WebDriver To Setup With A Project On Eclipse?

​

Note:- I hope you know installation of Java & Eclipse and able to create new java project in Eclipse, if not, please learn this

​

You can download the Selenium Java Client Driver here. You will find client drivers for other languages there, but only choose the one for Java.

Now create new project in eclipse IDE and create a class in that project 

​

Now selenium WebDriver's into Java Build Path

In this step,

  1. Right-click on "newproject" and select Properties.

  2. On the Properties dialog, click on "Java Build Path".

  3. Click on the Libraries tab, and then

  4. Click on "Add External JARs.."

When you click on "Add External JARs.." It will open a pop-up window. Select the JAR files you want to add.

After selecting jar files, click on OK button.

Add all the JAR files inside and outside the "libs" folder. Your Properties dialog should now look similar to the image below.

 Finally, click OK and we are done importing Selenium libraries into our project.

​

​

​

​

Refer next page First Selenium Java Program

bottom of page