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


TypeScript ElementFinder.isPresent方法代碼示例

本文整理匯總了TypeScript中protractor.ElementFinder.isPresent方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ElementFinder.isPresent方法的具體用法?TypeScript ElementFinder.isPresent怎麽用?TypeScript ElementFinder.isPresent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在protractor.ElementFinder的用法示例。


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

示例1: isVisibleInViewport

/** Checks if the given element is visible in the given viewport. */
async function isVisibleInViewport(el: ElementFinder, viewport: ElementFinder): Promise<boolean> {
  if (!await el.isPresent() || !await el.isDisplayed() || !await viewport.isPresent() ||
      !await viewport.isDisplayed()) {
    return false;
  }
  const viewportRect = getRect(await viewport.getLocation(), await viewport.getSize());
  const elRect = getRect(await el.getLocation(), await el.getSize());
  return elRect.left < viewportRect.right && elRect.right > viewportRect.left &&
      elRect.top < viewportRect.bottom && elRect.bottom > viewportRect.top;
}
開發者ID:Nodarii,項目名稱:material2,代碼行數:11,代碼來源:virtual-scroll.e2e.spec.ts

示例2: expect

  const expectHeroes = (isShown: boolean, ng1HeroCount = 3, statusMessage = 'Ready') => {
    // Verify the show/hide button text.
    expect(showHideBtn.getText()).toBe(isShown ? 'Hide heroes' : 'Show heroes');

    // Verify the `<ng2-heroes>` component.
    expect(ng2Heroes.isPresent()).toBe(isShown);
    if (isShown) {
      expect(ng2HeroesHeader.getText()).toBe('Heroes');
      expect(ng2HeroesExtra.getText()).toBe(`Status: ${statusMessage}`);
    }

    // Verify the `<ng1-hero>` components.
    expect(ng1Heroes.count()).toBe(isShown ? ng1HeroCount : 0);
    if (isShown) {
      ng1Heroes.each(ng1Hero => expect(ng1Hero).toBeAHero());
    }
  };
開發者ID:DeepanParikh,項目名稱:angular,代碼行數:17,代碼來源:static_lite_spec.ts

示例3: isPresent

 isPresent(): promise.Promise<boolean> {
   return this.element.isPresent();
 }
開發者ID:jaa1982,項目名稱:angular-tree-component,代碼行數:3,代碼來源:tree.driver.ts


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