-
Search for java > download the stable version
-
Extract and store the files in a desired folder
-
Now go to eclipse ide > right click on your project > Properties > Java Build path
-
click module path > Add JARS > select all the files from the extracted folder > Apply and close
-
Now repeat the step 4 and 5 but this time select all the files from the extracted lib folder > apply and close
-
Now as a result of installation Referenced Libraries will be displayed in the project stack with various files in it.

-
First identify your browser version by clicking ⋮ > Help > About Google chrome > Identify the version.
-
Now visit https://chromedriver.chromium.org/downloads and search for the desired web driver
-
Incase If you are using Chrome version 115 or newer, please consult the Chrome for Testing availability dashboard. This page provides convenient JSON endpoints for specific ChromeDriver version downloading > https://googlechromelabs.github.io/chrome-for-testing/ > download the stable version by,
3.1 Copy pasting the url on another tab > automatic download begins
-
Now store the extracted files in a desire folder
-
In the script to enable the chromedriver use the code ,
System.setProperty("webdriver.chrome.driver", "path of chromedriver.exe file in your system"); -
Once you run the script > chrome gets automatically called and performs the required testing functions.
