4

さて、私はクロムを使用しています。分度器を実行すると、ページの読み込みが開始され、ページを手動で更新するまで読み込みが終了せず、すべてが正常に流れます。私のページは Angular2 を使用しており、MEAN スタックで構築されています。

ここに私の設定ファイル:

// @datatype_void
require('ts-node/register');

exports.config = {
  baseUrl: 'https://localhost:3000',

  // use `npm run e2e`
  specs: [
    '../test/*.e2e.*.js'
  ],
  suites: {
    dashboard: '../test/Dashboard.e2e.testcase.js'
  },

  exclude: [],

  framework: 'jasmine2',

  allScriptsTimeout: 40000,

  jasmineNodeOpts: {
    showTiming: true,
    showColors: true,
    isVerbose: false,
    includeStackTrace: false,
    defaultTimeoutInterval: 40000
  },
  directConnect: true,

  capabilities: {
    'browserName': 'chrome',
    'chromeOptions': {
      'args': ['show-fps-counter=true']
    }
  },

  onPrepare: function() {
    browser.ignoreSynchronization = true;
  },

  /**
   * Angular 2 configuration
   *
   * useAllAngular2AppRoots: tells Protractor to wait for any angular2 apps on the page instead of just the one matching
   * `rootEl`
   *
   */
   useAllAngular2AppRoots: true
};

そして、これが私のテストで最初に実行されるものです:

describe('This is Dashboard.', () => {

    email = 'alexis.gonzalez@agilezip.mx';
    pass = 'laslos157';
    browser.get('/');
    browser.wait(protractor.ExpectedConditions.visibilityOf($('.abcRioButton.abcRioButtonBlue')), 10000);
    element(by.css('.abcRioButton.abcRioButtonBlue')).click();
    browser.getAllWindowHandles().then(function (handles) {
        browser.switchTo().window(handles[1]).then(function () {
            enterkeys(element(by.css('#Email')), email);
            element(by.css('#next')).click();
            browser.wait(protractor.ExpectedConditions.visibilityOf($('#Passwd')), 5000);
            enterkeys(element(by.css('#Passwd')), pass);
            element(by.css('#signIn')).click();
        });
    });
    browser.getAllWindowHandles().then(function (handles) {
        browser.switchTo().window(handles[0]);
    });
    browser.wait(protractor.ExpectedConditions.visibilityOf($$('.al-sidebar-list-link').get(0)), 10000);

4

2 に答える 2

0

私によると、Protractor はすべての Web Driver アクションの前にこのコマンドを自動的に適用するため、browser.waitForAngular() を使用する必要はありません。browser.navigate.refresh() を使用するだけでも機能するはずです。

于 2020-07-06T05:44:58.700 に答える