ember-native-dom-helpers
Version:
Test helpers for your integration tests that fire native events
37 lines (27 loc) • 1.39 kB
Markdown
# 0.6.1
- [REVERT BREAKING] Revert: "Fixes rootElement to match that of `this.$()[0]`"
# 0.6.0
- [BREAKING] Fixes rootElement to match that of `this.$()[0]`
- [ENHANCEMENT] Add support for content editable elements in the `fillIn` helper.
# 0.5.8
- [BUGFIX] Better check the existence of a tabindex attribute on the element.
# 0.5.7
- [BUGFIX] Non-focusable-by-default elements (p.e. `<div>`) are now focusable if they have tabindex.
# 0.5.6
- [FEATURE] `find()` invoked with no argument now returns the root element.
# 0.5.5
- [FEATURE] New `waitFor(selector, options)` helper, convenience for the most common cases of `waitUntil`.
# 0.5.4
- [BUGFIX] Support passing `document` and `window` to helpers
- [BUGFIX] Early exit `waitUntil` polling if the condition is true immediately.
# 0.5.3
- [BUGFIX] Fix problem `selectFiles` on browsers that consider `FileList`s readonly (which they all should)
# 0.5.0
- [BREAKING] Change return value of `findAll` to be an `Array` (instead of a `NodeList`).
# 0.4.2
- [BUGFIX] Allow `click` to receive a context element as second argument like the
default `click` helper from Ember does. If a context element is provided, the options object can be passed as third argument.
# 0.4.0
- [BREAKING] Remove deprecated import paths.
- [ENHANCEMENT] Rework of `focus`/`blur` and `keyEvent` to _mostly_ work when the browser is not
focused.