Releases: vmi/selenese-runner-java
Releases · vmi/selenese-runner-java
selenese-runner-java-2.0.0
- Change the supported Java version to 7.0 or later, because Selenium 2.47.1 changed one.
- Catch up Selenium 2.47.1.
- Update dependency versions.
- Refine travis-ci configuration.
- Fix a bug failed in GLOB matching. (issue #163)
- Fix a bug of link locator in case of "a" tag with nested elements. (suggested by AndreaColoru in issue #162)
selenese-runner-java-1.11.0
- Refine log format.
- Refine code.
- Update dependency versions. Note: Cannot update netty's version to 3.10.x because unit tests crashed.
- Add command line options to support Chrome-specific capability (PR #160 by uchida):
--chrome-extension
option to specify chrome extension crx files.--chrome-experimental-option
option to specify path to json file describe various objects in ChromeOptions.
- Catch up Selenium 2.46.0.
- Optimize the handler of
link
locator. (#162) - Change dependency to PhantomJSDriver (workaround). see https://github.com/detro/ghostdriver/issues/397
selenese-runner-java-1.10.0
- Add strict-exit-code option to isolate selenese results. (#157 by uchida)
selenese-runner-java-1.9.1
- Catch up Selenium 2.45.0.
selenese-runner-java-1.9.0
- Update dependency versions.
- Replace OptionBuilder for thread-safety and avoiding deprecated. (#148)
- Turn WebDriverManager into non-singleton object if use newInstance() method. (#148)
- Remove the following deprecated methods:
- WebDriverFactory#getEnvironmentVariables()
- WebDriverManager#getEnvironmentVariables()
- Add the following feature for HTML result: (#143)
- You can select information of test-case by tabs.
- Add each command information (start time, duration, sequence number, and result) ordered by time sequence.
selenese-runner-java-1.8.4
- Ignore exceptions on taking a screenshot. (#147 by lukian-tabandzhov)
selenese-runner-java-1.8.3
- Make the directory for HTML result, XML result, and screenshot if missing.
- Add new option "--no-exit" for Maven. (#146)
selenese-runner-java-1.8.2
- Fix an issue wuth CSS locator recorded by the Selenium IDE. Still the IDE successfuly replays the badly recorded CSS selector by fixing it before the actual execution. (#145 by lukian-tabandzhov)
selenese-runner-java-1.8.1
- Fix invalid links to each test-case report in "index.html" of html-result.
- Fix error if use command "clickAt" without coordinates parameter. (#144)
selenese-runner-java-1.8.0
- Add new option "--config", it reads option information from configuration file. (#140)
- Clean up the implementation of handling command line options.