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


TypeScript ElementArrayFinder.get方法代碼示例

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


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

示例1: it

 it('should convert ' + testData + ' accurate within the hour', () => {
     momentsTable.get(index).getText().then(text => {
         isoDate = new Date(text.split('→')[0].trim());
         expect(rxAge.toMoment(testData).valueOf()).to.be.closeTo(moment(isoDate).valueOf(), oneHour);
     });
 });
開發者ID:Droogans,項目名稱:encore-ui,代碼行數:6,代碼來源:rxAge.midway.ts

示例2: it

  it('should update the model when the value changes in the UI', () => {
    select.click();
    options.get(0).click();

    expect(p.getText()).toEqual('Form value: { "state": { "name": "Arizona", "abbrev": "AZ" } }');
  });
開發者ID:AlmogShaul,項目名稱:angular,代碼行數:6,代碼來源:reactive_select_control_spec.ts

示例3: it

 it('should set the value programmatically', () => {
   buttons.get(2).click();
   expect(inputs.get(0).getAttribute('value')).toEqual('LA');
   expect(inputs.get(1).getAttribute('value')).toEqual('MTV');
 });
開發者ID:Cammisuli,項目名稱:angular,代碼行數:5,代碼來源:nested_form_array_spec.ts

示例4: it

      it('should update the domain model as you type', () => {
        input.click();
        input.sendKeys('Carson');

        expect(paragraphs.get(0).getText()).toEqual('Value: Carson');
      });
開發者ID:matsko,項目名稱:angular,代碼行數:6,代碼來源:simple_ng_model_spec.ts

示例5: expect

 () => { expect(options.get(0).getAttribute('selected')).toBe('true'); });
開發者ID:AlmogShaul,項目名稱:angular,代碼行數:1,代碼來源:select_control_spec.ts

示例6: it

 it('should set the value when changing the domain model', () => {
   buttons.get(1).click();
   expect(inputs.get(0).getAttribute('value')).toEqual('Bess');
   expect(inputs.get(1).getAttribute('value')).toEqual('Marvin');
 });
開發者ID:charlesyxh,項目名稱:angular,代碼行數:5,代碼來源:ng_model_group_spec.ts

示例7: it

 it('should close that panel and first tab should be active', () => {
     closableTabElements.get(2).click();
     closeIcons.get(1).click();
     expect(closableTabPanels.get(0).getCssValue('display')).toBe('block');
 });
開發者ID:eabasir,項目名稱:primeng,代碼行數:5,代碼來源:tabview.e2e-spec.ts


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