...

/

Working with Selenium Grid

Working with Selenium Grid

Get introduced to the Selenium grid and learn about its components.

Selenium Grid

There is another tool that comes built into the Selenium Standalone Server called the Selenium Grid. Selenium Grid allows running the Selenium tests in parallel to cut down the execution time. Its structure consists of two parts:

  • One hub
  • Many nodes

Selenium grid hub

The hub receives the test requests and distributes them to the nodes.

Selenium grid node

A node gets tests from the hub and runs them.

We can run the Selenium tests in parallel by following the below step:

  1. Start the Hub:
 ...