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


TypeScript browser.waitForAngularEnabled方法代碼示例

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


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

示例1: holdMyProtractorIAmGoingIn

export async function holdMyProtractorIAmGoingIn(
  actionsWithAngularDisabled: () => Promise<void>
) {
  await browser.waitForAngularEnabled(false);
  await actionsWithAngularDisabled();
  await browser.waitForAngularEnabled(true);
}
開發者ID:bitjson,項目名稱:copay,代碼行數:7,代碼來源:utils.ts

示例2: irParaProgramaDeAula

 async irParaProgramaDeAula() {
     browser.waitForAngularEnabled(true);
     await navigateTo(`lesson-syllabus`);
     await browser.waitForAngularEnabled(true);
     await browser.sleep(5 * 1000); // identificao de processo pela rota demora mais
     await browser.waitForAngular();
 }
開發者ID:keviocastro,項目名稱:daily-ui,代碼行數:7,代碼來源:lesson.po.ts

示例3: it

 it('should check that the close delay is working', () => {
   page.closeDelayInput.clear();
   page.closeDelayInput.sendKeys(1000);
   page.dayPickerInput.click();
   page.clickOnDayButton('15');
   browser.waitForAngularEnabled(false);
   expect(page.datePickerPopup.isDisplayed()).toBe(true);
   browser.sleep(200);
   expect(page.datePickerPopup.isDisplayed()).toBe(true);
   browser.sleep(600);
   browser.waitForAngularEnabled(true);
   expect(page.datePickerPopup.isDisplayed()).toBe(false);
 });
開發者ID:kamilkisiela,項目名稱:angular-datepicker,代碼行數:13,代碼來源:datpicker-e2e.spec.ts

示例4: constructor

 constructor(){
     navigateTo('/');
     browser.executeScript('window.localStorage.clear();');
     browser.executeScript('window.stop();');
     browser.sleep(1000);
     browser.waitForAngularEnabled(false);
 }
開發者ID:keviocastro,項目名稱:daily-ui,代碼行數:7,代碼來源:login.po.ts

示例5: login

 login() {
     this.navigateToLogin();
     this.setUserNameAndPassword('admin', 'password');
     this.submitLoginForm();
     browser.waitForAngularEnabled(false);
     browser.wait(function() {return element(by.css('.logout')).isPresent(); });
 }
開發者ID:iraghumitra,項目名稱:incubator-metron,代碼行數:7,代碼來源:login.po.ts

示例6: it

 it('should auto close the toast within the timeout', () => {
     browser.waitForAngularEnabled(true);
     page.navigateTo();
     page.setTimeout(100);
     page.clickShowToast();
     page.waitForToast().then((element) => {
       page.waitForToastDisappear(400); // timeout + ease time
     });
   });
開發者ID:scttcper,項目名稱:toastr-ng2,代碼行數:9,代碼來源:app.e2e-spec.ts

示例7: getErrorMessage

 getErrorMessage() {
     browser.waitForAngularEnabled(false);
     let errElement = element(by.css('.login-failed-msg'));
     return waitForElementVisibility(errElement).then(() => {
         browser.sleep(1000);
         return errElement.getText().then((message) => {
             return message.replace(/\n/, '').replace(/LOG\ IN$/, '');
         });
     });
 }
開發者ID:iraghumitra,項目名稱:incubator-metron,代碼行數:10,代碼來源:login.po.ts


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