[ADF-3407] Create automated tests for comments - Content Services (#3638)

This commit is contained in:
jdosti
2018-07-31 18:21:50 +01:00
committed by Eugenio Romano
parent 88a5a57c46
commit 7173a620de
3 changed files with 181 additions and 8 deletions

View File

@@ -418,6 +418,13 @@ var ViewerToolbarPage = function () {
return this;
};
this.clickOnCommentsTab = function() {
var commentsTab = element(by.cssContainingText("div[id*='mat-tab-label']", "Comments"));
Util.waitUntilElementIsVisible(commentsTab);
commentsTab.click();
return this;
};
};
module.exports = ViewerToolbarPage;