Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coveros-archive/selenified-docker
Docker image for running selenified tests with a compatible version of Firefox and virtual browser
https://github.com/coveros-archive/selenified-docker
Last synced: about 1 month ago
JSON representation
Docker image for running selenified tests with a compatible version of Firefox and virtual browser
- Host: GitHub
- URL: https://github.com/coveros-archive/selenified-docker
- Owner: Coveros-Archive
- Created: 2017-08-25T16:39:29.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2017-08-25T19:09:42.000Z (over 7 years ago)
- Last Synced: 2024-09-20T18:39:08.720Z (3 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting the Docker image
`docker pull rkenney525/selenified-runner`# Using the Docker Image
`docker run -v /path/to/maven/project/using/selenified:/tmp/tests -p 5900:5900 --rm rkenney525/selenified-runner`**Note**: For the `-v` property, the left hand side should point to the directory and can be whatever, but it is important that the right hand side always be `/tmp/tests`
Also consider using
1. cd `/path/to/maven/project/using/selenified`
1. `docker run -v /$(pwd):/tmp/tests -p 5900:5900 --rm rkenney525/selenified-runner`The browser is running in a virtual display, which is hosted via VNC. If you want to watch your tests run, download a VNC client ([TightVNC Viewer for Windows](http://tightvnc.com/download.html)) and connect to port 5900.
# Building the Docker image yourself
1. Install docker
1. `cd /this/project/directory`
1. `docker build -t selenified-runner .`