Setting up Selenium Grid Server for parallel execution

To run Selenium WebDriver tests in parallel, we need to set up the Selenium Grid Server as a Hub. The Selenium Server hub will provide the available configurations or capabilities to the Selenium WebDriver tests. The slave machines, also called node, connect to the hub for parallel execution. Selenium WebDriver tests use the JSON wire protocol to talk to the Hub to execute Selenium commands.

The Hub acts like the central point that will receive the entire test request and distribute it to the right nodes.

In this recipe, we will set up a Selenium Grid Server and then add nodes with different OS and browser combinations. We will then use this setup to run tests in parallel using TestNG.

Getting ...

Get Selenium Testing Tools Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.