Tutorial by Examples

/* save the file in 'pages/loginPage' var LoginPage = function(){ }; /*Application object properties*/ LoginPage.prototype = Object.create({}, { userName: { get: function() { return browser.driver.findElement(By.id('userid')); } }, userPass: { ...

Page 1 of 1