當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript testing.E2EElement類代碼示例

本文整理匯總了TypeScript中@stencil/core/testing.E2EElement的典型用法代碼示例。如果您正苦於以下問題:TypeScript E2EElement類的具體用法?TypeScript E2EElement怎麽用?TypeScript E2EElement使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了E2EElement類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('should show invalid range validation message', async () => {
     element.setProperty('value', '2015-10-01');
     await input.press('2');
     await page.waitForChanges();
     const errorMessage = await page.find('.dot-field__error-meessage');
     expect(errorMessage.innerHTML).toBe('Invalid Date Range');
 });
開發者ID:dotCMS,項目名稱:core-web,代碼行數:7,代碼來源:dot-date.e2e.ts

示例2: it

    it('should mark as invalid when value dont match REgex', async () => {
        element.setProperty('regexCheck', '^[A-Za-z ]+$');

        await input.press('@');
        await page.waitForChanges();

        expect(element).toHaveClasses(['dot-invalid']);
    });
開發者ID:dotCMS,項目名稱:core-web,代碼行數:8,代碼來源:dot-textarea.e2e.ts

示例3: it

    it('should clear value, set pristine and untouched  when input set reset', async () => {
        element.callMethod('reset');
        await page.waitForChanges();

        expect(element.classList.contains('dot-pristine')).toBe(true);
        expect(element.classList.contains('dot-untouched')).toBe(true);
        expect(element.classList.contains('dot-invalid')).toBe(true);
        expect(await input.getProperty('value')).toBe('');
    });
開發者ID:dotCMS,項目名稱:core-web,代碼行數:9,代碼來源:dot-texfield.e2e.ts

示例4: 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

示例5: 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


注:本文中的@stencil/core/testing.E2EElement類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。