Software Testing Class

How to run your first Selenium WebDriver script – Selenium WebDriver Tutorial

How to run your first Selenium WebDriver script

In previous article we have seen about What is Selenium Webdriver? In this article we are concentrating on implementation of the WebDriver, we will see how to selenium webdriver download and configure the Selenium Webdriver with Eclipse & run your first Selenium WebDriver script.

Selenium WebDriver installation is divided in to simple steps to get & learn how to Install & configure WebDriver to kick of your automation testing. Also we will run your first automation script using WebDriver.

Step 1) Download & Install Java on your Computer

Before start working with the Learn Selenium WebDriver, we will need the first download Java Development Kit (JDK).

Here you can download Java Development Kit (JDK).

Download Java Development Kit (JDK)
Download Java Development Kit (JDK)

Step 2) Install Eclipse on your computer

Eclipse is open source software development environment written in Java. It supports supports multiple languages. In this tutorial we will using Eclipse to write the code in Java & execute your first test script.

Here you can download “Eclipse IDE for Java Developers

Make sure that you are downloading correct version of Eclipse based on the Windows 32 or 64 bit version.

Download “Eclipse IDE” for Java Developers

Once you select the windows version based on your requirement, you should be able to download a “eclipse-java-juno-SR2-win32-x86_64.zip” ZIP file.

Once you successfully download the ZIP file, extract the ZIP file in your PC.

For Eclipse, you do not need any installation; just double click on “eclipse.exe” file in the extracted ZIP folder.

Step 3) Download Selenium Java Client Driver

Selenium client driver is available in the different languages like Java, C#, Ruby, Python etc. But in this article we are concentrating on Java language.

Here you can download “Selenium Java Client Driver

Download “Selenium Java Client Driver”

Once you click on Download link for Java client then you should be able to download a “selenium-java-2.31.0.zip” ZIP file.

Once you successfully download the ZIP file, extract the ZIP file in your PC in the directory “C:\selenium- java-2.31.0”. You will see JARs files in extracted folder which would be imported in to Eclipse before running our first Selenium WebDriver script.

Step 4) Configure Eclipse with Selenium WebDriver

In Step 2 we have installed Eclipse, just Launch the “eclipse.exe” file from the extracted Eclipse folder.

Once you open the “eclipse.exe” file then it will ask you to select the workspace, here you can select the path where you want to save Eclipse project.

Selenium WebDriver workspace in eclipse

First step is to create a Java Project:

Create Java Project – Selenium WebDriver

Second step is to create a Class under Java project:

Create Java Class – Selenium WebDriver

Once you created the class you will see the Eclipse screen like this.

Start with Eclipse
Import External- Selenium Client JAR Files

Step 5) Run your first Selenium WebDriver script.

Once you complete the Step 1 to Step 4 then you are ready to execute your first WebDriver script. You can just copy paste the code written below & click on Run button to execute your first script. Code below which is written to opens the new Firefox browser window & open the Google page in it. It also read the Title of the page & close the browser window.

//Run yout First Selenium WebDriver script by copy paste below code after executing above five simple steps.

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class Webdriver_class
{
public static void main(String[] args)
{
WebDriver driver = new FirefoxDriver();
driver.get("http://google.com");
System.out.println(driver.getTitle());
driver.close();
}
}

Conclusion:

In the next module we will see some more Selenium Webdriver tutorials & its features. Working with the WebDriver is really interesting, you will love these modules as it has got so many information on WebDriver & Selenium which help you a lot while doing the interviews & while doing automation testing using. Stay tuned for more updates

or

If you are not regular reader of our website then highly recommend you to sign up for our free email newsletter!! Sign up just providing your email address below:

Enter your email address:Check email in your inbox for confirmation to get latest updates Software Testing for free.

Happy Testing!!!

Exit mobile version