protractor-styleguide icon indicating copy to clipboard operation
protractor-styleguide copied to clipboard

Guidelines for writing e2e tests with Protractor

Results 13 protractor-styleguide issues
Sort by recently updated
recently updated
newest added

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)...

The describe blocks should have a logical meaning. For eg the first describe block should contain the name of the page/module under test, second level of describe blocks could contain...