Skip to content

Instantly share code, notes, and snippets.

@nicolanrizzo
Last active May 11, 2016 07:10
Show Gist options
  • Save nicolanrizzo/eddaefb0f426004831d2fb20c49e771d to your computer and use it in GitHub Desktop.
Save nicolanrizzo/eddaefb0f426004831d2fb20c49e771d to your computer and use it in GitHub Desktop.
// test/e2e/support/pages/login/login.js
'use strict';
module.exports = function login() {
return {
url: "login",
getFieldByName: function (name) {
var mapping = {
"email": 'input[ng-model="login.mail"]'
};
return mapping[name];
}
};
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment