Skip to content

Releases: dn0000001/test-automation

0.14.0

20 Feb 17:01
9d53d76
Compare
Choose a tag to compare
0.14.0 Pre-release
Pre-release
  • BigDecimal Min/Max functions #382
  • Move BigDecimal parsing to BigDecimalUtils class #382

Note: This will break the existing code as the parse method moved from Utils to BigDecimalUtils class. You will need to replace Utils.parse with BigDecimalUtils.parse to fix it.

0.13.0

30 Jul 03:17
f004527
Compare
Choose a tag to compare
0.13.0 Pre-release
Pre-release

Note: This is not backward compatible with JDK8 for compilation but it will run under Java 8. It is necessary to use a newer version of a JDK to compile the project.

Full Changelog: v0.12.1...v0.13.0

0.12.1

20 Jun 18:33
83367ec
Compare
Choose a tag to compare
0.12.1 Pre-release
Pre-release

Full Changelog: v0.12.0...v0.12.1

0.12.0

01 Jun 17:35
7d09c51
Compare
Choose a tag to compare
0.12.0 Pre-release
Pre-release

Note: This is NOT backward compatible with Selenium 3 & Appium 7.

Full Changelog: v0.11.2...v0.12.0

0.11.2

31 May 15:25
a97c1ea
Compare
Choose a tag to compare
0.11.2 Pre-release
Pre-release
  • Add method to check if the substitutions are empty by @dn0000001 in #378

Note: This is compatible with Selenium 3 & Appium 7.

Full Changelog: v0.11.1...v0.11.2

0.11.1

25 May 22:29
53db152
Compare
Choose a tag to compare
0.11.1 Pre-release
Pre-release
  • Add support for WebDriverManager to handle driver installation by @dn0000001 in #377

To enable WebDriverManager, add following to test.properties:

wdm.enabled=true

# Flag to install all supported driver (as necessary)
#wdm.install.all=true

# If you want to use a different cache path
#wdm.cachePath=/some/place

# If you want to use a different resolution cache path
#wdm.resolutionCachePath=/some/place

# Flag to force the drivers to always be downloaded
#wdm.forceDownload=true

# Timeout in seconds which can be changed for slow internet
#wdm.timeout=60

# Specify proxy if necessary
#wdm.proxy=

# Specify proxy user if necessary
#wdm.proxyUser=

# Specify proxy password (encrypted using framework) if necessary
#wdm.proxyPass=

# Personal GitHub token (encrypted using framework)
# GitHub can throw errors if you try to download from it too many times in a short period
# If you experience this, then using a token will prevent the GitHub error
#wdm.gitHubToken=

Full Changelog: v0.11.0...v0.11.1

0.11.0

20 May 20:34
a6a75ff
Compare
Choose a tag to compare
0.11.0 Pre-release
Pre-release

Full Changelog: v0.10.10...v0.11.0

0.10.10

20 May 20:19
34ff654
Compare
Choose a tag to compare
0.10.10 Pre-release
Pre-release

Release before upgrading ui_auto_core

Full Changelog: v0.10.9...v0.10.10

0.10.9

10 Oct 21:06
c8a5f77
Compare
Choose a tag to compare
0.10.9 Pre-release
Pre-release

#369 - Add support for clicking using negative timeout

0.10.8

08 Oct 20:54
8172e71
Compare
Choose a tag to compare
0.10.8 Pre-release
Pre-release

#368 - Add support for custom retry policy when setting value
#367 - Add support for expected condition to take a lambda expression