How to run selenium test using docker

Hi All,

Developer will push the image to repo, testing team will pull that image.

How can I implement selenium test for pulled images.

New to docker, please provide detailed instructions.

little depends on your specific use case and also a bit on the technology stack you prefer.

At the beginning start small. Take the pulled image where you execute your tests and add selenium to it. Try to run your tests headless with for example phantomjs.

Depends where you want to go on from there, there are also things like the selenium grid. Where you somewhere provide the selenium browser you need and let your tests use them. There are also containers which record a screencap movie from your test run for documentation or debugging purposes.

Selenium itself also provides some pointers:

Thanks a lot.
Helped me a lot