当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript protractor.protractor.Key类代码示例

本文整理汇总了TypeScript中protractor.protractor.Key的典型用法代码示例。如果您正苦于以下问题:TypeScript protractor.Key类的具体用法?TypeScript protractor.Key怎么用?TypeScript protractor.Key使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了protractor.Key类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it('should toggle between edit and view mode with ctrl+`', () => {
      page.body().sendKeys(protractor.Key.chord(protractor.Key.CONTROL, '`'));
      expect(page.isInEditMode()).toBeTruthy();

      page.body().sendKeys(protractor.Key.chord(protractor.Key.CONTROL, '`'));
      expect(page.isInEditMode()).toBeFalsy();
    });
开发者ID:lukaszkostrzewa,项目名称:graphy,代码行数:7,代码来源:app.e2e-spec.ts

示例2: it

    it('should focus before and after trigger when tabbing past items', () => {
      page.pressKey(Key.ENTER);
      page.pressKey(Key.TAB);
      page.expectFocusOn(page.triggerTwo());

      // navigate back to trigger
      page.pressKey(protractor.Key.chord(protractor.Key.SHIFT, protractor.Key.TAB));
      page.pressKey(Key.ENTER);

      page.pressKey(protractor.Key.chord(protractor.Key.SHIFT, protractor.Key.TAB));
      page.expectFocusOn(page.start());
    });
开发者ID:BernhardRode,项目名称:material2,代码行数:12,代码来源:menu.e2e.ts

示例3: it

    it('should focus before and after trigger when tabbing past items', () => {
      let shiftTab = protractor.Key.chord(Key.SHIFT, Key.TAB);

      pressKeys(Key.ENTER, Key.TAB);
      expectFocusOn(page.triggerTwo());

      // navigate back to trigger
      pressKeys(shiftTab, Key.ENTER, shiftTab);
      expectFocusOn(page.start());
    });
开发者ID:justin-echternach,项目名称:material2,代码行数:10,代码来源:menu.e2e.ts


注:本文中的protractor.protractor.Key类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。