如何从其他文件访问功能?

问题描述 投票:0回答:1

这将引发错误:'未定义登录'。

//<Common.js>
var Common = function(){
this.login = function(uname,password){
    //All your code that you want to call from the test spec
    element(by.id('txtUserName')).sendKeys(login);
    element(by.id('txtPassword')).sendKeys(password);
    element(by.xpath('//input[@id="btnLogin"]')).click();

};
};

module.exports = new Common();

//<Test.js>
var newPage = require('./Common.js');

describe('The application', function() {

  it('should let you log into the application', function() {
         newPage.login('abcd', '1234');
 });
});


Failures:
1) The application should let you log into the application
  Message:
    Failed: login is not defined
  Stack:
    ReferenceError: login is not defined
javascript protractor pageobjects
1个回答
1
投票
在下面的行中将'登录'更新为'uname'

element(by.id('txtUserName')).sendKeys(uname);

© www.soinside.com 2019 - 2024. All rights reserved.