Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Releases: zalando/zalenium

2.53.1n

17 Jan 20:50
Compare
Choose a tag to compare

Selenium 2.53.1

  • New features in live preview
    • Display test name
    • Filter displayed nodes by test group
    • See usage here
  • Support for Docker 1.13
  • Bump for latest Docker 1.12.6

3.0.1b

04 Jan 20:11
Compare
Choose a tag to compare
  • Same features as this release but with Selenium 3.0.1

2.53.1m

04 Jan 20:07
Compare
Choose a tag to compare
  • TestingBot integrated to Zalenium
  • Adding Docker Compose examples

3.0.1a

27 Dec 17:38
Compare
Choose a tag to compare
  • Same features as this release with 2.53.1.
  • Now Zalenium available with Selenium 3.0.1.
  • Zalenium's future features will be working with Selenium 2.53.1 and Selenium 3.0.1 (until a newest Selenium 3 version gets released).

3.0.0a

27 Dec 17:18
Compare
Choose a tag to compare
  • Same features as previous release
  • Now Zalenium available with Selenium 3.0.0, which makes possible the use of the latest Firefox versions for testing.

2.53.1l

25 Dec 23:55
Compare
Choose a tag to compare
  • Adding Sauce Connect and BrowserStackLocal to enable local testing when using these cloud testing platforms. You just need to add --startTunnel true when using Sauce Labs and/or BrowserStack.
  • Fixing #42 and adding tests to avoid breaking it again.
  • Preparing for Selenium 3 migration
    • Removing an url dependency on Selenium when shutting down the node
    • /selenium-server/driver/?cmd=shutDownSeleniumServer was removed in Selenium 3, now using docker stop.

2.53.1k

19 Dec 22:24
Compare
Choose a tag to compare
  • BrowserStack has been integrated, it works in a similar way as Sauce Labs. Example command:

      export BROWSER_STACK_USER=<your BrowserStack username>
      export BROWSER_STACK_KEY=<your BrowserStack access key>
      docker run --rm -ti --name zalenium -p 4444:4444 -p 5555:5555 \
        -e SAUCE_USERNAME -e SAUCE_ACCESS_KEY \
        -e BROWSER_STACK_USER -e BROWSER_STACK_KEY \
        -v /tmp/videos:/home/seluser/videos \
        -v /var/run/docker.sock:/var/run/docker.sock \
        dosel/zalenium start --browserStackEnabled true
  • Now the default value for --browserStackEnabled and --sauceLabsEnabled is false, since the Google Analytics data shows that not so many people use this option.

2.53.1j

13 Dec 08:48
Compare
Choose a tag to compare

New features:

  • It is possible to use the capability name for the recorded video file. The output will look like: testName_browser_containerPort_timeStamp.mkv
  • You can now use "latest" for browser version when the test will be executed in Sauce Labs.

Bug fixes:

  • Specific browser versions are now forwarded to Sauce Labs as well.

2.53.1i

08 Dec 18:59
Compare
Choose a tag to compare
  • Logging improvement to gather raised exceptions.
  • Started to track anonymous usage to learn which features are used the most, so we can prioritise which new improvements we can work on, also to know possible bugs that we have not detected internally.

2.53.1h

01 Dec 22:24
Compare
Choose a tag to compare
  • Node shutdown was improved, it is done when the client sends a STOP_SESSION event, which makes life easier for frameworks/utilities that take screenshots for test failures.
  • Removing the hardcoded "localhost" in the VNC live preview. Now you can run Zalenium in a different machine and check the tests running from your own machine