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


TypeScript browser.waitForAngular方法代碼示例

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


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

示例1: expect

            submitNewCourseBtn.click().then(function() {
              browser.waitForAngular();

              // The last course should be the one that has been just added
              var courses = element.all(by.className('course-title'));
              expect(courses.last().getText()).toContain('New testing course');

              // Clear field inputs
              courseNameField.clear();
            });
開發者ID:pabloFuente,項目名稱:full-teaching,代碼行數:10,代碼來源:app.e2e-spec.ts

示例2: expect

      settingsButton.click().then(function() {
        browser.waitForAngular();

        // Browser url must have changed (/settings)
        expect(browser.driver.getCurrentUrl()).toMatch('/settings');
        // Settings page should display the user email
        browser.driver.findElement(by.css('div#stng-user-mail')).then(function(divMail) {
          expect(divMail.getText()).toEqual(userEmail);
        });
      });
開發者ID:gabrielTaSa,項目名稱:full-teaching,代碼行數:10,代碼來源:app.e2e-spec.ts

示例3:

 activateButton.click().then(function() {
   browser.waitForAngular();
   page.waitForAnimation();
   page.waitUntilElementPresent('#add-entry-icon');
 });
開發者ID:pabloFuente,項目名稱:full-teaching,代碼行數:5,代碼來源:app.e2e-spec.ts

示例4: element

 element(by.css('#exit-icon')).click().then(function() {
   browser.waitForAngular();
   page.waitForAnimation();
   expect(browser.driver.getCurrentUrl()).toMatch(/\/courses\/[0-9]+\/1/);
 });
開發者ID:pabloFuente,項目名稱:full-teaching,代碼行數:5,代碼來源:app.e2e-spec.ts

示例5: getParserCount

 getParserCount() {
     browser.waitForAngular();
     return element.all(by.css('table>tbody>tr')).count();
 }
開發者ID:JonZeolla,項目名稱:incubator-metron,代碼行數:4,代碼來源:sensor-list.po.ts


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