Selenium WebDriver Installation Steps
Step1: Download the required JAR files
Download Selenium WebDriver from (https://selenium.dev/downloads/) as marked in below picture.
Extract the downloaded file so that we can get the required JAR file.
Step2: Add a New Java Project in Eclipse IDE
Select File Menu > NEW > Project
Select ‘Java Project’ & Click on ‘Next’
Step3: Add Project Name
Enter the name of the project
Select ‘Java Project’ & Click on ‘Next’
Step4: Add Jar Files in Project Build Path
Right-click on the project “YourProjectName.” Select Build Path->Configure Build Path.
Move to the Libraries tab and click on the “Add External JARs” option. It will open a pop-up for selecting the downloaded JARs.
Navigate to folder in which all the JARs ( extracted from earlier selenium download ) are available. Select all of them (using Ctrl+A) and then click on the “Open” button. It’ll add all the JAR files in your project’s build path.
Now click on the “OK” switch to close the window.