protractor-styleguide
protractor-styleguide copied to clipboard
Add section about helpers
eg:
this.blur = function () { return function () { var body = element(by.css('body')); body.click(); }; };
or
this.isDisplayed = function (element) { return function () { return element.isPresent().then(function (isPresent) { if (isPresent) { return element.isDisplayed(); } return false; }); }; };