Skip to content

Native DOM events support

Compare
Choose a tag to compare
@san650 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