We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c575f20 commit 0ecfa94Copy full SHA for 0ecfa94
1 file changed
README.md
@@ -100,6 +100,7 @@ These transformations are available for tests based on `ember-native-dom-helpers
100
|---------------------------------------|-------------------------|----------------|
101
| ```import { click, find, findAll, fillIn, focus, blur, triggerEvent, keyEvent, waitFor, waitUntil } from 'ember-native-dom-helpers';``` | ```import { click, find, findAll, fillIn, focus, blur, triggerEvent, triggerKeyEvent, waitFor, waitUntil } from '@ember/test-helpers';``` |
102
| `find('.foo', context)` | `context.querySelector('.foo')` |
103
+| `find('.foo', '.context')` | `find('.context .foo')` |
104
| `findAll('.foo', context)` | `context.querySelectorAll('.foo')` |
105
| `click('.foo', context)` | `click(context.querySelector('.foo'))` |
106
| `click('.foo', context, { shiftKey: true })` | `click(context.querySelector('.foo'), { shiftKey: true })` |
0 commit comments