Releases: prantlf/grunt-html-dom-snapshot
v6.0.2
v6.0.1
v6.0.0
6.0.0 (2020-04-25)
Bug Fixes
- Upgrade WebDriverIO and Selenium drivers (fd4f69c)
BREAKING CHANGES
-
The instruction elementSendKeys accepts only a text, not an array of keys as an alternative. If you want to send arbitarry keats, like "Delete", use focus and keys instructions instead.
-
The minimum tested Node.js version is 10. Although all code and dependencies should still run with Node.js 8 well, the automated build on Travis started to fail
v5.1.0
v5.0.1
v5.0.0
5.0.0 (2019-10-08)
Bug Fixes
- Check existence earlier, than other characteristics like focused (53c1d2c)
- Upgrade webdriverio (14c4723)
BREAKING CHANGES
-
If more "is*" instructions are used, the order has been changed to prevent unnecessary blocks. Earlier, visibility was checked before other features, which could confuse the error reporting. The new order of evaluation of "is*" instruction reflects their importance. The instructions can be put to a single block, evaluated in the "natural" order and fail with the most important condition:
-
isExisting
-
isVisible
-
isVisibleWithinViewport
-
isEnabled
-
isSelected
-
isFocused
-
isNotExisting
-
isNotVisible
-
isNotVisibleWithinViewport
-
isNotEnabled
-
isNotFocused
This is very unlikely to break anything in real-world commands, but still, better to be sure.
v4.0.1
v4.0.0
4.0.0 (2019-09-21)
chore
- Upgrade WebdriverIO to the version 5 and adapt the task to stay compatible (9de12fc)
- Upgrade other dependencies and require Node.js 8 or newer (9de12fc)
Features
(c725559))
- Allow enabling of the "verbose" logging for this task only (9de12fc)
- Add a new instruction "elementSendKeys" for sending keys to a specific element (9de12fc)
BREAKING CHANGES
- Upgraded WebdriverIO 5 and dropped support of Node.js 7 and older.
Although the only broken instruction is scroll
, which does not support the parameter offset
any more, th eupgraded dependencies changed a lot and you wil lneed to check if your existing tests sill work.