Docker image for Java automated UI tests.
1M+
Docker image for Java automated UI tests.
Includes:
Available on Docker Hub.
The following Docker tags are available:
jdk-8 (jdk-8/Dockerfile)jdk-11 (jdk-11/Dockerfile)jdk-16, latest (jdk-16/Dockerfile)Note: Until recently latest was jdk-8, please use jdk-8 explicitly instead. See issue #11 for more information.
See the demo Maven project to see how this Docker image can be used to run UI tests. To run the demo within the latest version of this image on Docker Hub:
cd demo
./run.sh
Configure Selenium to launch Chrome in headless mode:
ChromeOptions options = new ChromeOptions().setHeadless(true);
WebDriver driver = new ChromeDriver(options);
To configure Protractor to use the version of ChromeDriver bundled in this image, set chromeDriver in Protractor's conf.js file:
exports.config = {
chromeDriver: '/usr/bin/chromedriver'
}
Chrome uses /dev/shm for runtime data which is 64MB by default under Docker. If this is not sufficient then this can cause Chrome to crash. Possible workarounds:
/dev/shm/dev/shm to the host's--disable-dev-shm-usageContent type
Image
Digest
sha256:05cc5fdaa…
Size
507.1 MB
Last updated
5 months ago
docker pull markhobson/maven-chrome