当前位置: 首页>>代码示例>>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;未经允许,请勿转载。