当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript E2EElement.find方法代码示例

本文整理汇总了TypeScript中@stencil/core/testing.E2EElement.find方法的典型用法代码示例。如果您正苦于以下问题:TypeScript E2EElement.find方法的具体用法?TypeScript E2EElement.find怎么用?TypeScript E2EElement.find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@stencil/core/testing.E2EElement的用法示例。


在下文中一共展示了E2EElement.find方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it('renders', async () => {
     // tslint:disable-next-line:max-line-length
     const expectedMarkup = `<dot-select name=\"testName\" label=\"testLabel\" hint=\"testHint\" options=\"|,valueA|1,valueB|2\" value=\"2\" required-message=\"testErrorMsg\" required=\"true\" class=\"dot-valid dot-pristine dot-untouched dot-required hydrated\"><div class=\"dot-field__label\"><label for=\"testName\">testLabel</label><span class=\"dot-field__required-mark\">*</span></div><select id=\"testName\"><option value=\"\"></option><option value=\"1\">valueA</option><option value=\"2\">valueB</option></select><span class=\"dot-field__hint\">testHint</span></dot-select>`;
     const hint = await element.find('.dot-field__hint');
     expect(element.outerHTML).toBe(expectedMarkup);
     expect(hint).toBeTruthy();
 });
开发者ID:dotCMS,项目名称:core-web,代码行数:7,代码来源:dot-select.e2e.ts

示例2: it

    it('should reset event', async () => {
        const resetBtn = await element.find('button[type="button"]');
        const expectedStatus = Object.assign({}, formStatus);
        Object.keys(expectedStatus).forEach(e => expectedStatus[e] = '');

        resetBtn.click();

        await page.waitForChanges();

        const data = await element.getProperty('value');
        expect(data).toEqual(expectedStatus);
    });
开发者ID:dotCMS,项目名称:core-web,代码行数:12,代码来源:dot-form.e2e.ts

示例3: it

 it('it should not render hint', async () => {
     element.setProperty('hint', '');
     await page.waitForChanges();
     const hint = await element.find('.dot-field__hint');
     expect(hint).toBeNull();
 });
开发者ID:dotCMS,项目名称:core-web,代码行数:6,代码来源:dot-radio.e2e.ts


注:本文中的@stencil/core/testing.E2EElement.find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。