我们是否应该在Protractor中基于页面对象模式的测试中为可重用的方法编写回调/承诺?
例如..我有以下测试代码和页面对象及其工作正常没有问题。但是我应该在页面类中为可重用的方法添加回调吗?
describe('This is a test suite for Login cases',function(){
beforeEach(function() {
LoginPage.goHome();
LoginPage.doLogin();
});
afterEach(function() {
LoginPage.doLogout();
});
it('Scenario1_Login_VerifyFirstName',function(){
//Some Test step
});
Page Class:
var Login = {
PageElements: {
emailInput: element(by.css('.email')),
passwordInput: element(by.css('.password')),
loginForm: element(by.css('.form')),
logout: element(by.linkText('LOG OUT'))
},
goHome: function goHome() {
browser.get('/signin');
browser.driver.manage().window().maximize();
},
doLogin: function doLogin() {
this.PageElements.emailInput.sendKeys(UserName);
this.PageElements.passwordInput.sendKeys(Password);
this.PageElements.loginForm.submit();
},
doLogout: function doLogout() {
browser.wait(EC.elementToBeClickable(this.PageElements.profileLink));
this.PageElements.profileLink.click();
this.PageElements.logout.click();
}
};
module.exports = Login;
答案 0 :(得分:0)
是的,你可以。
简单地返回值或承诺:
goHome: function() {
browser.get('/home');
return browser.getTitle();
},
并且应该在规范级别内解决它们"它"下面的块:
it('Page should have a title', function() {
expect(Page.goHome()).toEqual('Home Page');
});