Run Selenium Tests on Firefox Inside the Docker Container

Incorporating Docker into your integration test workflow makes it easier to manage dependencies, reduce conflicts, and speed up the development process.
Docker Compose, multiple containers can be spun up to simulate a production-like environment, providing more accurate results.

LetsĀ see what you need:
  1. Install docker (https://docs.docker.com/release-notes/docker-ce/#17031-ce-2017-03-27)
  2. Install VNC Viewer (https://www.realvnc.com/en/connect/download/viewer/)
  3. Navigate to the folder where docker-compose.yml file and execute from command line command: docker-compose up
Image


Execude command: docker ps -a (see created containers)
Image
Open VNC Viewer and add path to your container (VNC allow us to see what happen in our tests)
Image
Don'r forget to change your code
Image
That is all