Docker image for Protractor GUI E2E tests
1.2K
General Docker image for executing headless Google Chrome or Firefox Protractor e2e test cases in a Docker container. The created image does not contain any test code or project. This is the environment for running Protractor test cases. So this image is test project independent.
The Dockerfile was design based on the following projects:
techdivision/docker-e2e-protractor image from DockerHube2e.conf.js). Beside this you can provide additional parameters here for protractor.docker run -it --rm --name protractor-runner -v $(PWD):/protractor/project techdivision/docker-e2e-protractor e2e.conf.js
docker run -it --rm --name protractor-runner --env-file utils/testenv -v $(PWD):/protractor/project techdivision/docker-e2e-protractor e2e.conf.js --suite smoke
docker run -it --rm --name protractor-runner -e USERNAME=teszt.elek -e PASSWORD=Teszt12 -v $(PWD):/protractor/project techdivision/docker-e2e-protractor e2e.conf.js --suite regression
docker run -it --rm --name protractor-runner --privileged --net=host -v /dev/shm:/dev/shm -v $(PWD):/protractor/project techdivision/docker-e2e-protractor e2e.conf.js --suite smoke
utils/testenv the location (full path) of the testenv file on your machine. This file can contain environment variables for your new container.USERNAME=teszt.ele a single environment variable that is passed for the new container.$(PWD) or pwd the root folder of your Protractor test project:
$(PWD).e2e.conf.js --suite regression in case of you defined test suites in your Protractor configuration, you can add these hereProtractor can test directly using Chrome Driver or Firefox Driver, bypassing any Selenium Server. The advantage of direct connect is that your test project start up and run faster.
To use this, you should change your protractor configuration file as desbribed in the related Protractor Documentation:
directConnect: true
If this is true, settings for seleniumAddress and seleniumServerJar will be ignored. If you attempt to use a browser other than Chrome or Firefox an error will be thrown.
Chrome does not support to running it in container. So you need to start the Chrome Driver with --no-sandbox argument to avoid errors.
Also in the Protractor configuration file:
capabilities: {
'browserName': 'chrome',
/**
* Chrome is not allowed to create a SUID sandbox when running inside Docker
*/
'chromeOptions': {
'args': [
'no-sandbox',
'--disable-web-security'
]
}
},
You can find additional setup configurations in the related Protractor Documentation
Chrome uses sandboxing, therefore if you try and run Chrome within a non-privileged container you will receive the following message:
"Failed to move to new namespace: PID namespaces supported, Network namespace supported, but failed: errno = Operation not permitted".
The --privileged flag gives the container almost the same privileges to the host machine resources as other processes running outside the container, which is required for the sandboxing to run smoothly.
Based on the Webnicer project.
Docker has hardcoded value of 64MB for /dev/shm. Error can be occurred, because of page crash on memory intensive pages. The easiest way to mitigate the problem is share /dev/shm with the host.
docker run -it --rm --name protractor-runner --env-file utils/testenv -v /dev/shm:/dev/shm -v $(PWD):/protractor/project sequenceiq/protractor-runner
The size of /dev/shm in the Docker container can be changed when container is made with option --shm-size.
For Mac OSX users this conversation can be useful.
Based on the Webnicer project.
This options is required only if the dockerised Protractor is run against localhost on the host.
Imagine this scenario:
Run an http test server on your local machine, let's say on port 8000. You type in your browser http://localhost:8000 and everything goes smoothly. Then you want to run the dockerised Protractor against the same localhost:8000. If you don't use --net=host the container will receive the bridged interface and its own loopback and so the localhost within the container will refer to the container itself. Using --net=host you allow the container to share host's network stack and properly refer to the host when Protractor is run against localhost.
Based on the Webnicer project.
Content type
Image
Digest
Size
515.5 MB
Last updated
almost 9 years ago
docker pull techdivision/docker-e2e-protractor