'use strict';
functionPostProject() {
// Get a reference to page elements we want to interact withthis.loginButton = element(by.buttonText('Login'));
// Navigate to profile page URLthis.get = function () {
browser.get('/');
};
}
module.exports = PostProject;