本文整理汇总了TypeScript中@ember/test-helpers.triggerEvent函数的典型用法代码示例。如果您正苦于以下问题:TypeScript triggerEvent函数的具体用法?TypeScript triggerEvent怎么用?TypeScript triggerEvent使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了triggerEvent函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('DOM interactions', async () => {
await render(hbs`<div class="message">Hello, world</div>`);
await click('.message');
await doubleClick('.message');
await tap('.message');
await focus('.message');
await blur('.message');
await triggerEvent('.message', 'custom-event');
await triggerKeyEvent('.message', 'keydown', 'Enter', { ctrlKey: true });
await fillIn('.message', 'content');
const messageElement = find('.message')!;
await click(messageElement);
await doubleClick(messageElement);
await tap(messageElement);
await focus(messageElement);
await blur(messageElement);
await triggerEvent(messageElement, 'custom-event');
await triggerKeyEvent(messageElement, 'keydown', 'Enter', { ctrlKey: true });
await fillIn(messageElement, 'content');
await typeIn(messageElement, 'content');
const allMessages = findAll('.message');
for (const element of allMessages) {
await click(element);
}
const root = getRootElement();
await click(root);
});
示例2: test
test('toggle action shows and hides dropdown', async function(assert) {
assert.expect(3);
this.set('urn', nonHdfsUrn);
await render(hbs`
{{datasets/dataset-fabric-switcher urn=urn}}
`);
assert.notOk(find(contentSelector), 'expected dropdown content class is hidden');
await triggerEvent(triggerSelector, 'mouseenter');
assert.ok(find(contentSelector), 'expected dropdown content class is shown');
await triggerEvent(triggerSelector, 'mouseleave');
assert.notOk(find(contentSelector), 'expected dropdown content class is hidden');
});
示例3: test
test('pressing enter should trigger search and suggestion box should go away', async function(
this: ISearchBoxTestContext,
assert
) {
const searchOptions = ['one', 'two'];
const expectedSearch = 'expected search';
let searchedWord = '';
const onSearch = (word: string) => {
searchedWord = word;
};
await getBaseTest(this, { text: expectedSearch, onSearch, onTypeahead: async () => searchOptions });
await focusInput();
await triggerEvent('form', 'submit');
await assert.equal(searchedWord, expectedSearch);
assert.equal(querySelectorAll(this, '.ember-power-select-option').length, 0);
});
示例4: function
hooks.beforeEach(async function() {
await app.footer.faq().scrollIntoView(false);
await triggerEvent(window as any, 'scroll');
});
示例5: async
const blurInput = async () => {
await click('button'); // Blur
await triggerEvent(inputSelector, 'blur');
};
示例6: function
hooks.beforeEach(async function() {
triggerEvent(chat.selectors.form, 'submit');
await waitFor(chat.selectors.submitButton + '[disabled]');
});