量角器:测试场的焦点

时间:2015-01-04 16:17:14

标签: angularjs testing protractor end-to-end

如何使用量角器测试输入字段是否对焦?我这样做:

it('should focus email field', function(){
    expect(element(by.model('login.email')).getAttribute('id')).toEqual(browser.driver.switchTo().activeElement().getAttribute('id'));
});

这似乎适用于chrome,但这个测试失败了firefox。有什么想法吗?

这是失败消息:

[firefox #1]   2) Login page should focus email field
[firefox #1]    Message:
[firefox #1]      Expected 'login' to equal ''.
[firefox #1]    Stacktrace:
[firefox #1]      Error: Failed expectation
[firefox #1]     at [object Object].<anonymous> (/Users/Jason/Desktop/app/test/e2e/login-spec.js:38:69)
[firefox #1] 

这是我的测试脚本:

describe('Login page', function() {
    var loginURL = 'http://localhost:8090/app/#/login';
    var loginEmailField = 'login-email';

    beforeEach(function() {
        browser.get(loginURL);
    });

    it('should focus email field', function(){     
        expect(element(by.id(loginEmailField)).getAttribute('id')).toEqual(browser.driver.switchTo().activeElement().getAttribute('id'));
    });
});

1 个答案:

答案 0 :(得分:2)

在进行任何断言之前,您需要等待角度

beforeEach(function() {
    browser.get(loginURL);
    browser.waitForAngular();
});

除此之外,这可能与autofocus属性相关联,它在Firefox中存在问题,请参阅: