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


TypeScript browser.driver.manage方法代碼示例

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


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

示例1: describe

describe('angular-cli-project App', function() {

  let page: AngularCliProjectPage;
  let userEmail: string = "teacher@gmail.com";
  let userPass: string = "pass";
  let chatMessage: string = "This is a testing message for the chat";

  browser.driver.manage().window().maximize();

  beforeEach(() => {
    page = new AngularCliProjectPage();
    jasmine.DEFAULT_TIMEOUT_INTERVAL = 15000;
  });


  it('should display title in the navbar', () => {
    page.navigateTo();

    // Check browser url (root)
    expect(browser.driver.getCurrentUrl()).toMatch('/');
    // The menu bar should display the title of the app
    expect(page.getLogoText()).toEqual('FullTeaching');
  });


  it('should reject wrong log in', () => {

    // Check browser url (root)
    expect(browser.driver.getCurrentUrl()).toMatch('/');

    // Open login modal
    browser.driver.findElement(by.id('download-button')).then(function(welcomeBtn) {
      welcomeBtn.click().then(function() {

        // Find form elements
        var userNameField = browser.driver.findElement(by.id('email'));
        var userPassField = browser.driver.findElement(by.id('password'));

        // Fill input fields
        userNameField.sendKeys('wrongemail@gmail.com');
        userPassField.sendKeys('pass');

        // Ensure fields contain what has been entered
        expect(userNameField.getAttribute('value')).toEqual('wrongemail@gmail.com');
        expect(userPassField.getAttribute('value')).toEqual('pass');

        browser.driver.findElement(by.id('log-in-btn')).then(function(loginBtn) {
          // Click to log in - waiting for Angular as it is manually bootstrapped.
          loginBtn.click().then(function() {
            browser.waitForAngular();

            // Error message appears warning about an invalid field
            expect(browser.driver.findElement(by.tagName('app-error-message')).getText()).toContain('Invalid field');
            //Route mustn't change
            expect(browser.driver.getCurrentUrl()).toMatch('/');

            // Clear field inputs
            userNameField.clear();
            userPassField.clear();
          });
        });
      });
    });
  });


  it('should log in', () => {

    // Check browser url (root)
    expect(browser.driver.getCurrentUrl()).toMatch('/');

    // Find form elements (login modal is already opened)
    var userNameField = browser.driver.findElement(by.id('email'));
    var userPassField = browser.driver.findElement(by.id('password'));

    // Fill input fields
    userNameField.sendKeys(userEmail);
    userPassField.sendKeys(userPass);

    // Ensure fields contain what has been entered
    expect(userNameField.getAttribute('value')).toEqual(userEmail);
    expect(userPassField.getAttribute('value')).toEqual(userPass);

    browser.driver.findElement(by.id('log-in-btn')).then(function(loginBtn) {
      // Click to log in - waiting for Angular as it is manually bootstrapped.
      loginBtn.click().then(function() {
        browser.waitForAngular();

        // Browser url must have changed to the dashboard route
        expect(browser.driver.getCurrentUrl()).toMatch('/courses');
      });
    });
  });


  it('should allow adding new courses', () => {

    // Check browser url (dashboard)
    expect(browser.driver.getCurrentUrl()).toMatch('/courses');

//.........這裏部分代碼省略.........
開發者ID:pabloFuente,項目名稱:full-teaching,代碼行數:101,代碼來源:app.e2e-spec.ts


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