
Building a Selenium-Grid environment with Docker Containers
Before we get started let’s take a moment to get to know Selenium-Grid. Selenium-Grid allows you run your Selenium tests on different machines against different browsers in parallel. That is, running multiple tests at the same time against different machines running different browsers and operating systems. Essentially, Selenium-Grid support distributed test execution. It allows for running your tests in a distributed test execution environment. Building a Selenium-Grid environment with Docker Even though we will be using Docker in this demo, we will not be spending much time on the Docker setup and installation. Therefore, I recommend you check out our presentation “Introduction to Docker” for more details on setting up and using Docker. With that being said this demo is a complete walkthrough... Read more