WebDriver architecture

Unlike Selenium IDE, WebDriver is the most power tool for automation Testing. In WebDriver,  you can design the Test Script in any programming language like Java, C#, Python, Ruby etc. Also, you can integrate with any browser like Chrome, Mozilla Firefox, IE, Safari.

Selenium WebDriver Architecture

In Selenium WebDriver, you are generally working with Browser Drivers in your scripts. Which is virtual. That virtual browsers will connect to real time browser through the HTTP Server  when you run your script.

For more details Please follow the WebDriver Architecture

Installation:

In last section, we have understood the brief details about Selenium and its components. Now let’s see how we will install Selenium in our system.

First thing you need to remember, Selenium is not a software which need to be installed in your system.

You need to download Selenium Jar file and import in your code to support the functions and APIs of the selenium code.

Before downloading and adding Selenium jar to your code, you need a IDE to write your test script. Here we will use Eclipse IDE which is open source. To check how to download and install the Eclipse, please click this link and come back this section.

Hope, now you are clear on the  Eclipse IDE and how to create and run java code.

As you know earlier, you need a scripting language to write our Selenium test script. You can use Java, Python, C#, Ruby etc. But here concentrate on the Selenium with Java.

Let’s discuss on the installation of Selenium step by step.

Step 1: Download the Selenium java Client Server

Go to http://seleniumhq.org/download/ to download the Selenium Java Client server. Here you will find the client server for other language also. But you need to click on the download link of the java server. Check the screenshot below.

This will be downloaded as zip file. Save this in your local system extract this zip file and name this folder as selenium. You can give any name you want. But for easy convenience keep this simple.

This zip file which you downloaded contains all the jar file to be imported to the eclipse to support the selenium functions and APIs.

Step 2: Import all the Selenium jar to Eclipse:

Create a java project in  Eclipse.

  1. Click on <Project name> and select properties
  2. On the properties, click on the “Java Build Path”
  3. Click on the Library
  4. Click on the Add External Jar.

<Screenshot>

Once you click on the “Add External Jar”, a window popup will be shown and asked to import the Selenium jar . Go to Selenium jar folder that you have downloaded, and import all the jar to here,

<Screenshot>

Once you imported all the jar presented in the selenium client server folder click on “Apply and Close” as shown below.

That’s it. Now you are done with Selenium installation into Eclipse. You can now write Selenium est script and run.

Leave a Reply

Your email address will not be published. Required fields are marked *