Selenium Grid Tutorial: Important Ideas and Set Up – DZone – Uplaza

Being a tester or a talented net developer, it is advisable to check your purposes for bugs and efficiency in all of the obtainable browsers and working programs. However with so many dependencies in hand, having not simply totally different browsers, however totally different variations, too, it certainly turns into a hefty process. 

Most significantly, all these processes should be automated to the best extent as a result of in main corporations, individually creating check circumstances and pipelines could be costly and the obvious, the least preferable technique ever. Now that is the place Selenium Grid, an extensively used server-based check automation instrument comes into the image.

What Is Selenium Grid?

Selenium Grid is a instrument used for parallel and steady testing throughout a couple of browser and surroundings. It permits you to run checks concurrently on totally different machines towards totally different browsers and working programs. The aim of Selenium Grid is to distribute the check execution load throughout a number of machines, making it sooner to execute numerous checks.

The structure of Selenium Grid primarily includes a hub and lots of nodes. The hub acts as a central level the place check requests have to be despatched. Nodes are the machines (bodily or digital) the place the checks are getting executed. The hub routes the check execution requests to the suitable nodes based mostly on the specified browser and platform configurations specified within the check scripts.

Selenium Grid helps numerous configurations and distributed testing, together with parallel execution and selective browser functionality testing. It’s generally utilized in automated testing to make sure compatibility and performance throughout totally different browsers and platforms.

Why Is Selenium Grid Wanted?

You could be very desirous about understanding why we want it in any respect. it particularly, it comes within the Selenium suite, which additionally consists of different software program and options like Selenium WebDriver and Selenium IDE and we noticed the way it can help browsers like Chrome, Microsoft Edge, Opera, Safari, and all its totally different variations altogether. Other than that, it will probably additionally run these browsers on a number of working programs creating an end-to-end testing surroundings. Being open-source, it’s also freely obtainable and will get the quickest updates and developments with full accessibility to all the knowledge. 

Selenium Grid Structure

Let’s perceive the structure of Selenium Grid. Selenium Grid works within the Hub and Node mannequin, the place one Hub is linked to a number of nodes and might run on numerous machines, browsers, and totally different variations of their browsers.

Hub acts because the central level within the Selenium grid, which routes the check instructions to the nodes. It additionally receives check requests from the consumer and rolls them to the required nodes. Hub is launched on a single machine with a definitive working system and a browser with the entire testing browsers and their variations, and in addition with the flexibility to set it up on a number of units operating the suitable working system.

Selenium has additionally outlined different elements within the structure that are defined intimately on its web site which may be helpful to run Selenium in its absolutely distributed mode with routers, classes, and distributors effectively outlined. Now that now we have sufficient background data on SeleniumGrid, 

Selenium Grid Can Be Put in and Utilized in 4 Straightforward Steps

Step 1

In step 1, let’s arrange the conditions rapidly. 

First, we have to make sure that we’re operating the newest model of Java, or Java 11 and better. This may be downloaded from the official web site.

Then we would want to set up all of the wanted browsers that we want to check on. We will likely be utilizing a Chrome browser driver with model 123 for accessing the Chrome browser. Additionally, do remember the fact that the variations of each driver and browser ought to be the identical to run the Selenium servers. And eventually, I will likely be utilizing Eclipse IDE, as this demo will likely be based mostly on Java. This IDE may be downloaded from the official Eclipse web site. 

For the ultimate prerequisite, we would want to obtain the newest Selenium Grid server from the official Selenium web site.

Step 2

Now let’s begin with step 2. Now for step 2, I’ve created a brand new folder and pasted my Selenium server and Chrome driver that I will likely be utilizing for this demo. 

package deal Selenium_test1 ;
	import java.web.MalformedURLException;

	public class test1{

	String hubUrl ="https://10.20.31.20";
	String url ="https://www.world.co/search";
	WebDriver driver;
	public void setupGrid()
	{
	DesiredCapabilities ds= new DesiredCapabilities();
	ds.setCapability("browserName", "Chrome");
	strive{
	driver = new RemoteWebDriver( new URL(hubUrl),ds);
	} catch (malformedURLException e){
	e.printSTackTrace();
	}
	driver.get(url);
	}
	public void pageTitleValidation(){
	String title = driver.getTitle();
	System.out.println("page title :" +title);
	}
	public static void principal(String[] args)
	{
	test1 obj = new test1();
	obj.setupGrid();
	obj.pageTitleValidation();
	}
	}

Step 3

Now for Step 3, I’ve opened my Eclipse ID and through the use of WebDriver, I’ve written down my check case. We’ll be testing a brand new Maven venture from others. Other than that, we’d additionally want to stick the Chrome driver that will likely be utilized in a specific folder right here. The model of Selenium server that’s getting used is to be uprooted to the trail of this venture by the steps that I will likely be following now. I can transfer all the way down to my venture identify, proper click on, and go to the construct path. From right here, I can transfer all the way down to configure the construct path, and on the right-hand facet, I will see a chance referred to as add exterior jaws. From right here I can add the Selenium server that I am utilizing. 

Click on apply and shut and after that, let’s transfer to step 4. 

Step 4

Now for step 4, I’ve come again to my folder that I did in step 2. Right here, I will be utilizing the command immediate. 

This makes it very simple to search out the folder and it’s a easy course of. Since this is just one machine and one browser, I will likely be utilizing Selenium Edge Sandaland mode.

Now the server is beginning. It provides the required dependencies one after the other, and the method is getting accomplished. It has given us a specific handle to go to. Now I will be copying this handle and transferring again to step 3. Right here, within the hub URL, I’ll paste this handle, and after my code is full, I’ll go to the file and run this as an utility. 

Alright, so now that I see the appliance is operating, I’ll transfer to my Chrome browser, and I will paste the handle that I used to be given by command immediate. That is my Selenium handle and I see the classes are operating. In overview, I can see that full stereotypes for Chrome have been created. And in classes, my default check case is operating an lively. You may also see the online web page.

Grid Roles

Grid consists of six totally different elements which provides you flexibility to deploy your check automation run in a number of methods. You can begin them by itself in addition to group them as a hub or we are able to run them on a single machine.

1. Standalone

Integrating all Grid elements seamlessly, standalone operates as a unified entity. By initiating standalone mode, you effortlessly deploy a completely operational Grid with a single command, all inside a singular course of. It is necessary to notice that standalone is restricted to operating on a single machine.

java -jar selenium-server-.jar standalone

2. Hub and Node

Hub and node are the preferred and largely used elements. They permit customers to mix totally different machines with totally different working programs and browser variations. Due to this, you’ll get a single entry to run webdriver checks in a number of environments.

hub consists of Router, Distributor, Occasion bus, and Session Queue:

java -jar selenium-server-.jar hub

node detects a number of obtainable drivers from the system path.

java -jar selenium-server-.jar node

Abstract

In the long run, to summarize, Selenium Grid facilitates the parallel execution of a number of checks throughout a number of browsers and platforms, utilizing the hub-node structure. The hub serves because the central repository for maintaining checks, whereas nodes act as Selenium situations, executing these checks as instructed by the hub. Putting in Selenium Grid consists of downloading the Selenium Server jar file, the identical file used for operating Selenium RC checks. To confirm whether or not the hub is operational or not, it may be achieved by way of the command immediate or an internet browser. To carry out execution of the check scripts on the Grid, it is required to make the most of the DesiredCapabilities and RemoteWebDriver objects. DesiredCapabilities configures the browser kind and working system for automation, whereas RemoteWebDriver designates the node or machine for executing our checks.

Share This Article
Leave a comment

Leave a Reply

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

Exit mobile version