I run a docker (which I built myself), this docker works with E2E tests. The browser works, but I want to have another nice feature, I want you to be able to watch the session online.
My docker run :
docker run -p 4444:4444 --name ${DOCKER_TAG_NAME} -e Some_ENVs -v Volume:Volume --privileged -d "{docker-registry}" >> /dev/null 2>&1
I can export screenshots, but in some cases this is not enough, and the ability to see what the exact state of the test is will be amazing. I tried many options, but I came to a standstill. Any help would be great.
- My tests are in
Python 2.7 - My Docker
ubuntu:14.04 base ubuntu:14.04 - My environment is in AWS (if that matters)
Docker runs on Ubuntu servers.
I know this is a duplicate of this , but no one has answered it that way ...
source share