gridopadesham

An end-to-end documentation on Grid

View the Project on GitHub

Image Courtesy: Boloji.com

«Back Home

Getting started with Selenium Grid

  1. Prequisites
  2. Configuring the server binaries
  3. Starting the Hub and Node
  4. The journey of a test case

Sometimes we might end up with the need to run our Selenium tests on a different machine. The reasons why we might want to do this could be many. Here are a few reasons :

Ok so enough of stories.. :) Here’s what you need to get a Selenium Grid up and running.

Pre-requistes :

  1. The below server binaries are required to be downloaded :
  2. chromedriver - If you are going to be running tests on Chrome. Refer here to learn more.
  3. geckodriver - If you are going to be running tests on Firefox. Refer here to learn more.
  4. safaridriver - If you are going to be running tests on Safari. [ This now comes pre-bundled with Sierra (v10.12.6) and above.
  5. iedriverserver - If you are going to be running tests on Internet Explorer. Refer here to learn more.
  6. edgedriver - If you are going to be running tests on Microsoft Edge browser. Refer here to learn more.

You don’t need all of the above. It depends on what platform you are going to be running your Grid setup and also depends upon what browser flavor you would like to run tests against. For e.g., if you dont have a OSX, then you pretty much cannot include Safari. If you have only Linux boxes at your disposal, then you don’t need either the IEDriverServer (or) the EdgeDriver because they are windows only binaries.

  1. JDK 8 or higher. The selenium codebase requires JDK8 atleast now to run.
  2. The Selenium standalone jar downloaded from here

How to configure the driver binaries

The driver binaries (chromedriver /geckodriver/safaridriver/iedriverserver/edgedriver) are what helps selenium interact with the actual browser. These binaries are now built and released by the respective browser manufacturers themselves because they know their browsers better than anyone else. Selenium relies on these binaries to talk to the actual browser.

In general there are two ways in which you can configure driver binaries.

  1. By adding the directory wherein the driver binaries reside, as part of your PATH variable. Depending on what platform you are trying to update your PATH on, one of the below resources should be useful.

    1. Unix
    2. Mac
    3. Windows
  2. Informing the server binary location via a JVM argument.

    1. For chrome use -Dwebdriver.chrome.driver=<locationGoesHere> For e.g., -Dwebdriver.chrome.driver=/usr/local/bin/chromedriver
    2. For firefox use -Dwebdriver.gecko.driver=<locationGoesHere> For e.g., -Dwebdriver.gecko.driver=/usr/local/bin/geckodriver
    3. For internet explorer use -Dwebdriver.ie.driver=<locationGoesHere> For e.g., -Dwebdriver.ie.driver=C:\Downloads
    4. For edge use -Dwebdriver.edge.driver For e.g., -Dwebdriver.edge.driver=C:\Downloads

Starting the Hub and Node

The hub can be started via the command:

java -jar selenium-server-standalone-3.141.59.jar -role hub

This causes the hub to be started and listen on port 4444.

The node can be started via the command :

java -jar selenium-server-standalone-3.141.59.jar -role node

This spins off a node with the following features :

The journey of a test case

Ever wondered how does information flow back and forth between your testcase and the Grid ? Ever wondered how all this fits in ?

When your test tries to talk the Grid here’s how the flow happens:

  1. Your client bindings (it can be Java/C#/Python/Javascript) first creates a JSON Payload in which the most important thing that gets captured is the browser flavor (This is applicable only when a new session request is created).
  2. This JSON Payload is then forwarded to http://localhost:4444/wd/hub (For the sake of simplicity lets assume that our Hub is listening on port 4444 on localhost).
  3. The Hub now tries to check which amongst its nodes has the capability to support the requested browser and then forwards the request to the node.
  4. The node receives the payload and then spins off a server component which would be listening on a particular port.
  5. The server component would receive the payload from the node, translate it as an action on the browser and then depending upon the operation’s result, sends back a result to the node.
  6. The node receives this response from the server component and then sends it back to the hub.
  7. The hub now sends back this response back to the test.

Here’s a pictorial representation of how does your selenium instructions flow across all the systems. Test case Flow

«Back Home