量角器不等待重定向

Protractor doesn't wait for redirect

我有用 Jasmine 编写的量角器代码,应该用于登录用户。不幸的是,在进入 root url 之后进行了重定向,这需要相当长的时间(大约 5 秒),我无法让量角器等待它。我已经尝试过 browser.wait,我已经尝试过使用 promises,我已经尝试过 this blogpost,但什么也没做。它仍然不等待。登录页面是来自 Keycloak 服务器的页面,这就是我使用 driver.findElement 而不是 element 的原因。这是我当前的代码:

describe('my app', function() {
  it('login', function() {
    var driver = browser.driver;
    browser.get('/');
    console.log('get');
    driver.findElement(by.id('username')).isPresent().then(function() {
      console.log('waited');
      driver.findElement(by.id('username')).sendKeys("test");
      driver.findElement(by.id('password')).sendKeys("test");
      driver.findElement(by.id('kc-login')).click();
      driver.findElement(by.css('.page-header')).isPresent().then(function() {
        console.log('ok');
        expect(browser.getLocationAbsUrl()).toMatch("/test");
      });
    });
  });
});

你知道我该怎么做才能让它发挥作用吗?我用这个种子开始了量角器项目:https://github.com/angular/angular-seed

您需要关闭同步:

var EC = protractor.ExpectedConditions;

describe('my app', function() {

  beforeEach(function () {
      browser.ignoreSynchronization = true;
      browser.get('/');
  });

  it('login', function() {
    var username = element(by.id('username'));
    browser.wait(EC.visibilityOf(username), 10000);

    username.sendKeys("test");
    element(by.id('password')).sendKeys("test");
    element(by.id('kc-login')).click();

    var header = element(by.css('.page-header'));

    browser.wait(EC.visibilityOf(header), 10000).then(function () {
        console.log('logged in');
    });
  });
});

请注意,我还更新了测试:切换回 elementbrowser,添加了具有内置 预期条件 [=20] 的 browser.wait() =].