Ir al contenido principal

How to create a Selenium Grid using Docker

This is a tutorial for creating a Selenium grid with Docker and Docker Compose using environment variables, above is the vid and below you will find some useful notes.
  1. 1.

    Pre-reqs

    • Have Docker installed
      Have the code for our previous Galen Tests project or your own set of selenium tests locally
  2. 2.

    What is selenium grid

    • Selenium grid is set of services or applications that allows us to create a testing environment in which we can test against different combinations of browsers and operating systems. You can also use it to run tests in parallel.
      Selenium grid consists of two parts. A hub that receives the selenium test commands, like click on this button or enter some text on a textfield, and passes them to the appropriate nodes.
    • And the nodes that register themselves against the selenium hub providing to it the information of each node’s running environment, like, the operating system (for example windows, linux or mac), browser (like firefox or chrome), the version, and so on. The nodes are the ones that run the tests against the actual browsers.
  3. 3.

    How to use envioronment variables in Docker Compose

    • Create a .env file in the same folder as your docker-compose.yml file
        
      #Add some comments
      VARIABLE_NAME=value
        
      
    • Then, you can use the environment variable inside the docker-compose.yml file
        
      version: '3'
      services:
        my-service:
          image: image
          ports:
            - "2222:${VARIABLE_NAME}"
        
      
    • You can set the environment variables on your OS by calling export
        
      export HUB_SERVICE_PORT=5555
        
      
    • Or you can clear the environment variables by calling unset
        
      unset HUB_SERVICE_PORT
        
      
    • Check the current configurations for Docker Compose given the current values for the environment variables
        
      docker-compose config
        
      
  4. 4.

    How to create a simple selenium grid with a hub and a node using Docker Compose

    • Configure the Selenium Hub
        
      version: '3'
      services:
        hub:
          image: "selenium/hub"
          environment:
            - GRID_HUB_PORT=${HUB_SERVICE_PORT}
          ports:
            - "${HUB_SERVICE_PORT}:${HUB_SERVICE_PORT}"
        
      
    • Configure the node (You can replace "BROWSER" below with "chrome" or "firefox" for example)
        
        selenium-node-BROWSER:
          image: "selenium/node-BROWSER"
          environment:
            - HUB_PORT_4444_TCP_ADDR=${HUB_SERVICE_URL}
            - HUB_PORT_4444_TCP_PORT=${HUB_SERVICE_PORT}
          depends_on:
            - "hub"
        
      
    • Start the hub and the nodes using docker compose
        
      docker-compose up
        
      
    • Check the selenium grid status given the ip for docker containers
        
      http://192.168.99.100:4444/grid/console
        
      
    • If you want to scale a particular service (you can replace "SERVICE-NAME=NUMBER-OF" below with "selenium-node-chrome" and "NUMBER-OF-INSTANCES" with 5 for example)
        
      docker-compose up --scale SERVICE-NAME=NUMBER-OF-INSTANCES
        
      
  5. 5.

    Use galen to execute the tests against the local selenium grid

    • Run the galen tests using docker
        
      docker run -v $(pwd):/workdir -it local/galen test tests/ --htmlreport reports "-Dgalen.browserFactory.selenium.runInGrid=true" "-Dgalen.browserFactory.selenium.grid.url=http://192.168.99.100:4444/wd/hub"
        
      
  6. 6.

Comentarios

Entradas populares de este blog

How to copy files from and to a running Docker container

Sometimes you want to copy files to or from a container that doesn’t have a volume previously created, in this quick tips episode, you will learn how. Above is the vid and below you will find some useful notes. 1. Pre-reqs Have Docker installed 2. Start a Docker container For this video I will be using a Jenkins image as an example, so let’s first download it by using docker pull docker pull jenkins/jenkins:lts

How to create an AEM component using Reactjs

In this tutorial, I will show how to use use Adobe's archetype to create an AEM application with React.js support and also how to add a new React.js component so that it can be added into a page, above is the vid and below you will find some useful notes. In the second part we will see how to configure the Sling Model for the AEM React component. 1. Pre-reqs Have access to an Adobe Experience Manager instance. You will need aem 6.4 Service Pack 2 or newer. Have Maven installed, understand how it works and also understand how to use Adobe's archetype, you can watch my video about maven here: Creating an AEM application using Maven and Adobe's archetype 2.

House price prediction 3/4: What is One Hot Encoding

A series about creating a model using Python and Tensorflow and then importing the model and making predictions using Javascript in a Vue.js application, above is the vid and below you will find some useful notes. Here, in part 3 of this series, I will show what is and how does one hot encoding works. In the first post, called House price prediction 1/4: Using Keras/Tensorflow and python , I talked about how to create a model in python, pre-process a dataset I've already created, train a model, post-process, predict, and finally about creating different files for sharing some information about the data for use on the second part. Then in part 2, called House price prediction 2/4: Using Tensorflow.js, Vue.js and Javascript , I took the model, the data for pre and post processing and after loading everything we were finally able to predict