Principles and Applications of Distributed System Selenium GRID

Principles and Applications of Distributed System Selenium GRID

Author: Wang Huan, Unit: China Mobile Smart Home Operation Center

Labs Guide

A distributed system is a system composed of a group of computer nodes that communicate through a network and work in coordination to complete a common task. The emergence of distributed systems is to use cheap, ordinary machines to complete computing and storage tasks that a single computer cannot complete. Its purpose is to use more machines to process more data. As mentioned above, this is the concept of a distributed system. In the test system, there are also distributed application scenarios. Today, I will introduce you to distributed testing based on selenium, Selenium-Grid.

Part 01 What is Selenium-Grid

Selenium Grid is one of the three major components of Selenium. Its function is to allow us to run tests in parallel on multiple computers and centrally manage different browser versions and browser configurations.

Part 02 Selenium-Grid usage scenarios

- Supports testing in multiple execution environments

Selenium Grid supports execution on multiple physical machines or virtual machines (cross-platform, cross-browser), for example, test node 1 is a physical machine with Windows 7 operating system and Google Chrome browser, test node 2 is a physical machine with Linux operating system and Firefox browser, and test node 3 is a Dockers-based virtualization environment with IE8 browser. Selenium-Grid can call all three nodes.

- Combined with multi-threading technology, testing can be performed on multiple devices in parallel, which can effectively reduce the testing time

Selenium Grid itself does not support multi-threaded concurrent execution, but it can be combined with multi-threading technology to achieve concurrent test execution.

Part 03 Selenium-Grid Structure

The Grid consists of a hub and one or more nodes.

The hub node is used as a management node to manage the registration and status information of each proxy node, receive remote client code request calls, and then forward the requested commands to the proxy nodes for execution.

The Node node is the node that actually executes the task, that is, the node where the browser is located. Its main function is to register with the hub node, receive requests from the hub node, and execute tests.

Part 04 Environment Setup

Preset Configuration

The Hub and Node PCs need to deploy the Java environment, and the Hub and Node nodes are in the same LAN and have intercommunication. The selenium grid jar package is downloaded to the PC from the download address: https://cdn.npm.taobao.org/dist/selenium/3.9/selenium-server-standalone-3.9.1.jar.

Configuring the Hub Node

Taking Windows system as an example, enter the directory where the jar package is located and enter the following command:

 java -jar selenium-server-standalone-3.9.1.jar -role hub -port 4455 

  • role: indicates that this node is a hub node
  • port: indicates that the Hub interacts with the Node through this interface

At this point, we have created a Hub node on the PC 192.168.1.3. Let's log in to the hub node to check the overall status of the current Selenium Grid. Open the page http://192.168.1.3:4455/ and you can see a Console link in the lower right corner.

Click the console to automatically jump to the selenium Grid control page, which is shown below:

Because other Node nodes have not been configured yet, you can only view the current configuration items.

Configuring Node

Configure Node 1:

Similarly, we take the Windows system as an example, enter the directory where the jar package is located, and enter the following command:

 java -jar selenium-server-standalone-3.9.1.jar -role node -hub http://192.168.1.3:4455/grid/register

After the command is entered, you can see that the current device has been registered successfully. We return to the Hub node and refresh the http://192.168.1.3:4455/grid/console page to check whether the Node node is registered successfully.

At this point, we can see that a device with an IP of 192.168.147.1 has been successfully registered with the Hub node, and there are three browsers on this device, namely Firefox, IE, and Chrome.

Configure Node 2:

Similarly, on the second PC, enter the directory where the jar package is located and enter the following command:

 java -jar selenium-server-standalone-3.9.1.jar -role node -hub http://192.168.1.3:4455/grid/register

Node 2 shows that the registration is successful. Now we log in to the Hub to check the registration status:

We can see two Node nodes in the Hub node.

Part 05 Verify the results

Now we use Python to verify the magic of selenium grid. We write an automation script on the Hub node, issue tasks on the Hub node, and implement specific tests on the Node node. The test content is to let Node1 node open the Baidu website through the Firefox browser.

The corresponding Python scripts and execution results on the Hub node are as follows:

The command line on Node1 displays the following tasks:

At this point, the entire small test has been completed. Do you want to try it yourself? ​

<<:  Report: Global mobile broadband coverage reaches 95%

>>:  The difference between SMTP and IMAP in email protocols

Recommend

Blockchain: a panacea for wealth or deadly arsenic?

Blockchain has been talked about a lot recently. ...

What is Zigbee and why is it important for your smart home?

Zigbee is a widely used smart home protocol that’...

5G is not yet popular, and 6G is coming?

In 2022, have you already switched to a 5G phone ...

Gcore (gcorelabs) Russian Vladivostok VPS simple test

It has been a while since I shared information ab...

Promote Kunpeng talent training and help build the Kunpeng industry ecosystem

On November 25, Huawei Kunpeng University Tour Sh...

Top 10 Wi-Fi Predictions for 2023

Christmas is around the corner, the goose is gett...

GreenCloudVPS Kansas node is online, 2G memory package starts at $15 per year

GreenCloudVPS has launched its 30th data center p...

Omdia: Global Gigabit Broadband Users to Reach 50 Million by 2022

According to the latest report released by market...

Everyone is waiting for 5G, what is 5G waiting for?

At the end of 2013, the Ministry of Industry and ...