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


TypeScript browser.driver.findElements方法代码示例

本文整理汇总了TypeScript中protractor/globals.browser.driver.findElements方法的典型用法代码示例。如果您正苦于以下问题:TypeScript browser.driver.findElements方法的具体用法?TypeScript browser.driver.findElements怎么用?TypeScript browser.driver.findElements使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在protractor/globals.browser.driver的用法示例。


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

示例1: it

  it('should allow adding new entries to the forum', () => {
    expect(browser.driver.getCurrentUrl()).toMatch(/\/courses\/[0-9]+\/1/);

    // Get all tab buttos
    browser.driver.findElements(by.css('.md-tab-label-aux')).then(function(tabButtons) {

      expect(tabButtons.length === 5).toBeTruthy();

      tabButtons[2].click().then(function() {
        expect(browser.driver.getCurrentUrl()).toMatch(/\/courses\/[0-9]+\/2/);
        element(by.css('.card-panel.warning')).isPresent().then(function(pres) {
          if (pres) {
            element(by.css('#edit-forum-icon')).click().then(function() {
              page.waitForAnimation();
              // Get and click the checkbox to allow the forum's activation
              browser.driver.findElement(by.css('label[for=delete-checkbox]')).then(function(activationAllowed) {
                activationAllowed.click();

                // Get and click the button to activate the forum
                browser.driver.findElement(by.css('#put-modal-btn')).then(function(activateButton) {
                  activateButton.click().then(function() {
                    browser.waitForAngular();
                    page.waitForAnimation();
                    page.waitUntilElementPresent('#add-entry-icon');
                  });
                });
              });
            });
          }
          browser.driver.findElement(by.css('#add-entry-icon')).then(function(btn) {
            btn.click().then(function() {
              page.waitUntilElementPresent('#course-details-modal');

              // Find form elements
              var entryTitleField = browser.driver.findElement(by.css('input#inputTitle'));
              var entryCommentField = browser.driver.findElement(by.css('textarea#inputComment'));
              // Fill input fields
              entryTitleField.sendKeys('New testing entry title');
              entryCommentField.sendKeys('New testing entry comment');
              // Ensure fields contain what has been entered
              expect(entryTitleField.getAttribute('value')).toEqual('New testing entry title');
              expect(entryCommentField.getAttribute('value')).toEqual('New testing entry comment');

              // Send new entry
              browser.driver.findElement(by.css('#post-modal-btn')).then(function(sendButton) {
                sendButton.click().then(function() {
                  browser.waitForAngular();
                  page.waitUntilElementNotVisible('#course-details-modal');

                  // Get and check the title of last entry
                  var entries = element.all(by.css('li.entry-title div div a'));
                  expect(entries.last().getText()).toContain('New testing entry title');

                });
              });
            });
          });
        });
      });
    });
  });
开发者ID:pabloFuente,项目名称:full-teaching,代码行数:61,代码来源:app.e2e-spec.ts


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