Native DOM events support
san650
released this
15 Nov 00:16
·
602 commits
to master
since this release
This is an ALPHA release to test the new native events support.
Native events mode allow not to depend on Ember global test helpers like click
, fillIn
, etc. This is crucial for testing of jquery
-free apps.
You can enable native events mode by putting the following lines inside your test-helper.js
:
import { useNativeEvents } from 'ember-cli-page-object/extend';
useNativeEvents();
Community Contributions
- #333 Update [email protected] (@ro0gr)
- #339 Add native-events mode (@ro0gr)