Course Content
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

Grid Architecture Diagram

Here is a step-by-step guide to setting up and running tests on Selenium Grid.

Selenium Grid setup. The below diagram has three nodes. The hub forwards the test request to the nodes. The actual test execution takes place at the matching node.

 

Selenium Grid Architecture Python

 

The hub is the central server that receives the requests to execute the tests. The hub forwards the request to the matching node. The node executes the test. The grid setup can have multiple heterogeneous nodes.

  • A node can run the Chrome on Windows.
  • Another node can run Firefox on Linux.
  • One node can run Safari on a Mac.
  • Another node can be mobile device running Android.
Join the conversation