This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
Releases: zalando/zalenium
Releases · zalando/zalenium
2.53.1g
Solving some typos and wrong text being rendered, also added refresh parameter, it can be used like this:
http://localhost:4444/grid/admin/live?refresh=5, to refresh the view every 5 seconds.
2.53.1f
Live preview of the nodes is added, you can now see how the tests are being executed inside the containers.
After starring Zalenium, just go to http://localhost:4444/grid/admin/live, and check the execution.
2.53.1e
2.53.1d
2.53.1c
Adding three new parameters to start the container, the parameters are forwarded to docker-selenium
. The parameters are:
--screenWidth
-> Sets the screen width. Defaults to 1900.--screenHeight
-> Sets the screen height. Defaults to 1880.--timeZone ->
Sets the time zone in the containers. Defaults to "Europe/Berlin".
Example:
docker run --rm -ti --name zalenium -p 4444:4444 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /tmp/videos:/home/seluser/videos \
dosel/zalenium start --screenWidth 1440 --screenHeight 810 --timeZone "America/Montreal"
2.53.1b
2.53.1a
Zalenium working now entirely in docker.
About the project versioning:
- To make life easy for people who want to use it, we are now using as a version number the Selenium version being supported.
- E.g. This release is
2.53.1a
, this means that this version is built with and supports Selenium 2.53.1. - The versioning will be similar to the one used in docker-selenium
Please see the README file for usage details.
v0.4.0
- Making available the video recording feature from docker-selenium. When the test runs in docker-selenium, it will be automatically recorded and saved to the
videos
sub-folder where the JARs and the start script are present. - Allowing Zalenium to use the most recent docker-selenium image from the downloaded ones. E.g. If you have docker-selenium:2.53.1a and docker-selenium:2.53.1z, Zalenium will use the one tagged with 2.53.1z. This solves the issue #13