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


TypeScript By.all方法代码示例

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


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

示例1: it

    it('The second element should be focused', fakeAsync(() => {
        const fix = TestBed.createComponent(SetFocusComponent);
        fix.detectChanges();

        const secondElem: HTMLElement = fix.debugElement.queryAll(By.all())[1].nativeElement;

        tick(16);
        fix.detectChanges();
        expect(document.activeElement).toBe(secondElem);
    }));
开发者ID:IgniteUI,项目名称:igniteui-angular,代码行数:10,代码来源:focus.directive.spec.ts

示例2: it

    it('should trigger the methods in the action buttons', () => {
        const primarySpy = jasmine.createSpy('spy');
        const secondarySpy = jasmine.createSpy('spy2');
        const options = {
            secondary: [
                {
                    label: 'Group Actions 1',
                    model: [
                        {
                            command: primarySpy,
                            icon: 'fa fa-refresh',
                            label: 'Action 1-1'
                        }
                    ]
                },
                {
                    label: 'Group Actions 2',
                    model: [
                        {
                            command: secondarySpy,
                            icon: 'fa fa-refresh',
                            label: 'Action 2-1'
                        }
                    ]
                }
            ]
        };
        comp.options = options;
        comp.selectedItems = [{ key: 'value' }, { key: 'value' }];

        const actionButton: DebugElement = de.query(By.css('.action-header__secondary-button'));
        actionButton.triggerEventHandler('click', {});

        fixture.detectChanges();

        const splitButtons = de.query(By.all()).nativeElement.querySelectorAll('.ui-menuitem-link');
        const primaryButton = splitButtons[0];
        const secondaryButton = splitButtons[1];

        primaryButton.click();
        secondaryButton.click();

        expect(primarySpy).toHaveBeenCalled();
        expect(secondarySpy).toHaveBeenCalled();
    });
开发者ID:dotCMS,项目名称:core-web,代码行数:45,代码来源:action-header.spec.ts

示例3:

import {DebugElement} from '@angular/core';
import {By} from '@angular/platform-browser';

var debugElement: DebugElement;
class MyDirective {}

// #docregion by_all
debugElement.query(By.all());
// #enddocregion

// #docregion by_css
debugElement.query(By.css('[attribute]'));
// #enddocregion

// #docregion by_directive
debugElement.query(By.directive(MyDirective));
// #enddocregion
开发者ID:BharatBhatiya,项目名称:test,代码行数:17,代码来源:by.ts

示例4: it

 it('should create the component', () => {
   expect(component).toBeTruthy();
   const node = fixture.debugElement.query(By.all());
   expect(node.name).toEqual('img');
 });
开发者ID:Jacob-Friesen,项目名称:portfolio_website,代码行数:5,代码来源:lightbox.component.spec.ts

示例5: it

 it('should create the component', () => {
   expect(component).toBeTruthy();
   const node = fixture.debugElement.query(By.all());
   expect(node.nativeElement.innerHTML).not.toEqual('');
 });
开发者ID:Jacob-Friesen,项目名称:portfolio_website,代码行数:5,代码来源:demos.component.spec.ts


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