Java Installation & Environment Setup for Selenium WebDriver

In this article you will learn how to install Java and configure environment variable for it. If you are planning to learn Selenium or LeanFT (UFT Developer) with Java , first of all you ought to set up the Java Development Kit (JDK).The current version of Java is 17.0.2.By the time you are reading this article the version may be changed.

Please follow the following steps to download Java.

Download the JDK installer program from Oracle official page:

https://www.oracle.com/java/technologies/javase-downloads.html

You will see the following page. Select the Windows Tab. You will see multiple download options here. I prefer the compressed Archive because it does not required installation. We can just extract it and start working after setting up environment variable for Java. Its up to you can choose either of them.

Download Java

Click on the JDK Download link against Compressed Archive. It will start downloading. Once the download is complete, go to your download folder.

Download JDK Selenium

Steps to Install Java Path

Extract the archive file to any directory. I have extracted it under C:\.

jdk-bin

Now you will have to set up the Environment variables.

Steps to set the Java Path in Environment Variables

Step 1: Go to Windows Start Menu and type Environment and open it to Edit Environment Variables.

Windows-environment-variable-java-myskillpoint

Step 2:Environment Variables window will open. Click on the “New” button under System variables.

Windows-environment-variable-java-home-path-1

Step 3: Type JAVA_HOME (in CAPS) in the Variable name field and provide the path of the JDK directory in the Variable value field.

Windows-environment-variable-java-home-path-2

Step 4: Click on the OK button. You will see that the JAVA_HOME variable has been added to the list of System Variables.

Windows-environment-variable-java-home-path-3

Step 5: Now you will have to edit the Path variable if it already exists or you will have to create a new Path variable in the same fashion as we have added the JAVA_HOME variable. Most likely the Path variable will be there. Select it and click on the Edit button.

Windows-environment-variable-java-bin-path-1

Step 6: The following window will be displayed. Click on the New button.

Windows-environment-variable-java-bin-path-2

Step 7: The following Edit Environment Variable window will be displayed. Add the following path %JAVA_HOME%\bin to the path variable.

Windows-environment-variable-java-bin-path-3

*Note: If you are working on Windows 10 or lower version and not getting the window as shown in the above screenshot. In that case, click on the Variable value text field and press the End key to move the cursor to the extreme right-hand and type a semicolon and after enter the path “%JAVA_HOME%\bin” that actually point to the bin directory of Java.

*Note: Semicolon(;) is the delimiter to separate multiple path variable values.

Step 9: Click the OK button. The path variable would be updated. Again click on the OK button the apply the changes in Environment variables.

Verify Java Installation

In order to verify that Java has been installed successfully and environment variables have been set correctly open the command prompt or Windows PowerShell and type the command java –version. The command should run successfully and it would display the version of Java that have been set in the path variable.

check-java-version-command-line

So now we are done with the Java installation. The next step would be Eclipse installation which is the most preferred IDE to write Java programs. Please refer to the next article How to Download and Install Eclipse.

Recommended Posts

Leave a Reply