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


TypeScript common_dom.By類代碼示例

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


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

示例1:

 .subscribe(() => {
   cmpDebugElement = ctx.fixture.debugElement.query(By.directive(HomePage));
   if (!cmpDebugElement) return;
   userStatsDebugElement = cmpDebugElement.query(By.directive(UserStats));
   micropostNewDebugElement = cmpDebugElement.query(By.directive(MicropostNew));
   feedDebugElement = cmpDebugElement.query(By.directive(Feed));
 });
開發者ID:windwang,項目名稱:angular2-app,代碼行數:7,代碼來源:HomePage.spec.ts

示例2: expect

 .then((testComponent) => {
   testComponent.detectChanges();
   let anchorElement =
       testComponent.debugElement.query(By.css('a.detail-view')).nativeElement;
   expect(DOM.getAttribute(anchorElement, 'href')).toEqual('detail');
   async.done();
 });
開發者ID:ChinnasamyM,項目名稱:angular,代碼行數:7,代碼來源:router_link_spec.ts

示例3: it

    it('can show feed', () => {
      const cmp:Feed = cmpDebugElement.componentInstance;
      expect(cmp.feed.length).toEqual(2);

      const el = cmpDebugElement.nativeElement;
      expect(DOM.querySelectorAll(el, 'li .content').length).toEqual(2);

      const avatarLink = DOM.querySelector(el, 'li>a');
      expect(avatarLink.getAttribute('href')).toEqual('/users/1');

      const gravatarDebugElement = cmpDebugElement.query(By.directive(Gravatar));
      expect(gravatarDebugElement).toBeTruthy();
      expect(gravatarDebugElement.componentInstance.email).toEqual('test1@test.com');
      expect(gravatarDebugElement.componentInstance.alt).toEqual('test user1');

      const userLink = DOM.querySelector(el, '.user>a');
      expect(userLink).toHaveText('test user1');
      expect(userLink.getAttribute('href')).toEqual('/users/1');

      const content = DOM.querySelector(el, '.content');
      expect(content).toHaveText('content1');

      const timestamp = DOM.querySelector(el, '.timestamp');
      expect(timestamp.innerText).toMatch(/1 day ago/);

      const deleteLinks = DOM.querySelectorAll(el, '.delete');
      expect(deleteLinks[0]).toBeTruthy();
      expect(deleteLinks[1]).toBeFalsy();
    });
開發者ID:windwang,項目名稱:angular2-app,代碼行數:29,代碼來源:Feed.spec.ts

示例4: expect

 tcb.createAsync(TestComponent).then((testComponent) => {
   testComponent.detectChanges();
   testComponent.debugElement.query(By.css('a.detail-view-self'))
       .triggerEventHandler('click', null);
   expect(router.spy('navigateByInstruction')).toHaveBeenCalledWith(dummyInstruction);
   async.done();
 });
開發者ID:LordBinary,項目名稱:angular,代碼行數:7,代碼來源:router_link_spec.ts

示例5: getChildrenBySelector

  /**
   * Gets a child DebugElement by css selector.
   *
   * The child of DebugElement are other elements that are "known" to
   * Angular.
   */
  static getChildrenBySelector(parent: DebugElement, selector: string): DebugElement[] {
    let results = [];

    parent.queryAll(By.css(selector)).forEach((el) => results.push(el));
    parent.children.forEach((de) => {
      TestHelper.getChildrenBySelector(de, selector).forEach((el) => results.push(el));
    });

    return results;
  }
開發者ID:Gitjerryzhong,項目名稱:angular2,代碼行數:16,代碼來源:helper.ts

示例6: it

  it('can be shown', () => {
    ctx.fixture.detectChanges();

    expect(cmpDebugElement).toBeTruthy();

    const cmp:UserList = cmpDebugElement.componentInstance;
    expect(cmp.users.length).toEqual(2);

    expect(DOM.querySelectorAll(cmpDebugElement.nativeElement, '.users>li').length).toEqual(2);

    const gravatarDebugElement = cmpDebugElement.query(By.directive(Gravatar));
    expect(gravatarDebugElement).toBeTruthy();
    expect(gravatarDebugElement.componentInstance.alt).toEqual('test1');
    expect(gravatarDebugElement.componentInstance.email).toEqual('test1@test.com');

    const userLink:HTMLElement = cmpDebugElement.query(By.css('.users>li>a')).nativeElement;
    expect(userLink.innerText).toEqual('test1');
    expect(userLink.getAttribute('href')).toEqual('/users/1');
  });
開發者ID:gtostock,項目名稱:angular2-app,代碼行數:19,代碼來源:UserList.spec.ts

示例7: it

    it('can follow', () => {
      const cmp:FollowBtn = cmpDebugElement.componentInstance;
      cmp.isFollowedByMe = false;
      ctx.fixture.detectChanges();

      const followBtn = cmpDebugElement.query(By.css('.follow-btn')).nativeElement;
      expect(followBtn).toHaveText('Follow');

      followBtn.click();
      expect(cmp.isFollowedByMe).toBeTruthy();
      expect(relationshipService.follow).toHaveBeenCalledWith('1');
    });
開發者ID:windwang,項目名稱:angular2-app,代碼行數:12,代碼來源:FollowBtn.spec.ts

示例8: spyOn

 return tcb.createAsync(TestComponent).then((fixture) => {
     fixture.detectChanges();
     spyOn(fixture.componentInstance, "fileUploaded");
     let el = fixture.debugElement.query(By.css('div#child'));
     el.triggerEventHandler('drop', {
         preventDefault(){
         },
         dataTransfer: {
             files: [1, 2, 3],
             items: [1, 2, 3]
         }
     });
     window.setTimeout(()=> {
         expect(fixture.componentInstance.fileUploaded).toHaveBeenCalledWith([1, 2, 3]);
     }, 300);
 });
開發者ID:anikets43,項目名稱:fileDroppa,代碼行數:16,代碼來源:fileDroppa.spec.ts


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