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


TypeScript platform-browser.By类代码示例

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


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

示例1: it

 it("exists", () => {
   expect(element.query(By.css("section.community"))).not.toBeNull();
 });
开发者ID:rx007,项目名称:habitat,代码行数:3,代码来源:explore.component.spec.ts

示例2: getRemoveCommunicationButton

function getRemoveCommunicationButton(fixture: ComponentFixture<GroupCardComponent>): DebugElement {
    return fixture.debugElement.query(By.css(locators.removeCommunicationButton));
}
开发者ID:entcore,项目名称:entcore,代码行数:3,代码来源:group-card.component.spec.ts

示例3: expect

 .then((fixture: ComponentFixture<any>) => {
   let query = fixture.debugElement.query(By.directive(HelloComponent));
   expect(query).toBeTruthy();
   expect(query.componentInstance).toBeTruthy();
 });
开发者ID:fengjianjunstudy,项目名称:myAngularProject,代码行数:5,代码来源:hello.component.spec.ts

示例4: it

  it(': should contain content', () => {
    el = fixture.debugElement.query(By.css('#software--content'));

    expect(el).not.toBe(undefined);
    expect(el).not.toBe(null);
  });
开发者ID:bjoberg,项目名称:brettoberg.com,代码行数:6,代码来源:software.component.spec.ts

示例5: it

 it('should render today', () => {
   expect(componentEl.query(By.css('.sub-title')).nativeElement.textContent).toContain('Today');
 });
开发者ID:kevinheader,项目名称:nebular,代码行数:3,代码来源:calendar-header.component.spec.ts

示例6: expect

 .then((fixture: ComponentFixture<any>) => {
   let query: DebugElement = fixture.debugElement.query(By.directive(AngularMaterialComponent));
   expect(query).toBeTruthy();
   expect(query.componentInstance).toBeTruthy();
 });
开发者ID:gitter-badger,项目名称:covalent,代码行数:5,代码来源:angular-material.component.spec.ts

示例7: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(NzTestFormTextComponent);
   fixture.detectChanges();
   testComponent = fixture.debugElement.componentInstance;
   text = fixture.debugElement.query(By.directive(NzFormTextComponent));
 });
开发者ID:SrgGs,项目名称:ng-zorro-antd,代码行数:6,代码来源:nz-form-text.spec.ts

示例8: it

 it('should not have an .dl-abdtp-up-button', () => {
   const upButton = fixture.debugElement.query(By.css('.dl-abdtp-up-button'));
   expect(upButton).toBeFalsy();
 });
开发者ID:dalelotts,项目名称:angular-bootstrap-datetimepicker,代码行数:4,代码来源:max-view.spec.ts


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