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


TypeScript element.all方法代碼示例

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


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

示例1: it

 it('ngSwitch have three <happy-hero> instances', function () {
   const happyHeroEls = element.all(by.tagName('happy-hero'));
   expect(happyHeroEls.count()).toEqual(3);
 });
開發者ID:DanielKucal,項目名稱:angular,代碼行數:4,代碼來源:e2e-spec.ts

示例2: getNumOfSubGroups

 getNumOfSubGroups(groupName: string) {
   return element.all(by.css('[data-name="' + groupName + '"] table tbody tr')).count();
 }
開發者ID:JonZeolla,項目名稱:incubator-metron,代碼行數:3,代碼來源:tree-view.po.ts

示例3:

 .then(() => element.all(by.css(`[data-name="${groupName}"] [data-name="${cellName}"]`)).reduce(reduce_for_get_all(), []))
開發者ID:JonZeolla,項目名稱:incubator-metron,代碼行數:1,代碼來源:tree-view.po.ts

示例4: clickNextButton

 clickNextButton(index) {
   element.all(by.tagName('button')).get(index).click();
   // browser.pause();
 }
開發者ID:mehdirazajaffri,項目名稱:gator-meetup,代碼行數:4,代碼來源:app.po.ts

示例5: waitForElementPresence

 return waitForElementPresence(element(by. cssContainingText('[data-name="' + name + '"] a', waitForAnchor))).then(() => {
   return element.all(by.css('[data-name="' + name + '"] tr[data-name="' + rowName + '"]')).all(by.css('td')).getText();
 });
開發者ID:JonZeolla,項目名稱:incubator-metron,代碼行數:3,代碼來源:tree-view.po.ts

示例6: getButton

 getButton(index) {
   return element.all(by.tagName('button')).get(index);
 }
開發者ID:mehdirazajaffri,項目名稱:gator-meetup,代碼行數:3,代碼來源:app.po.ts

示例7: selectLocation

 selectLocation() {
   element.all(by.tagName('input')).get(0).click();
   element.all(by.tagName('a')).get(2).click();
   browser.sleep(1500);
 }
開發者ID:mehdirazajaffri,項目名稱:gator-meetup,代碼行數:5,代碼來源:app.po.ts

示例8: getPost

 getPost(i: number) {
   return element.all(by.css('app-post-card')).get(i);
 }
開發者ID:thisissoon,項目名稱:angular-start,代碼行數:3,代碼來源:app.po.ts

示例9: getPostImageUrl

 getPostImageUrl(i: number) {
   return element
     .all(by.css('app-post-card .image'))
     .get(i)
     .getAttribute('src');
 }
開發者ID:thisissoon,項目名稱:angular-start,代碼行數:6,代碼來源:app.po.ts

示例10: it

 it('has inputs', function () {
   expect(element.all(by.css('h2')).first().getText()).toEqual('Windstorm details!');
 });
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:3,代碼來源:e2e-spec.ts


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