ACS-3545 fix e2e tests (#2759)

* [ci:force][auto-commit] Update @alfresco/js-api to 5.2.0-401 for branch: update-alfresco-dependencies originated from @alfresco/js-api PR: 36873

* [ci:force][auto-commit] Update @alfresco/adf-extensions to 5.2.0-36869 for branch: update-alfresco-dependencies originated from @alfresco/adf-extensions PR: 36873

* [ci:force][auto-commit] Update @alfresco/adf-core to 5.2.0-36869 for branch: update-alfresco-dependencies originated from @alfresco/adf-core PR: 36873

* [ci:force][auto-commit] Update @alfresco/adf-content-services to 5.2.0-36869 for branch: update-alfresco-dependencies originated from @alfresco/adf-content-services PR: 36873

* [ci:force][auto-commit] Update @alfresco/adf-cli to 5.2.0-36869 for branch: update-alfresco-dependencies originated from @alfresco/adf-cli PR: 36873

* [ci:force][auto-commit] Update @alfresco/adf-testing to 5.2.0-36869 for branch: update-alfresco-dependencies originated from @alfresco/adf-testing PR: 36873

* ACS-3545 Fix for e2e tests

Co-authored-by: alfresco-build <alfresco-build@hyland.com>
This commit is contained in:
AleksanderSklorz
2022-11-04 11:47:28 +01:00
committed by GitHub
parent a62a9e81bc
commit ae57a094b1
3 changed files with 30 additions and 30 deletions

View File

@@ -35,10 +35,10 @@ export class CommentsTab extends Component {
commentTextarea = this.byCss('.adf-comments-input-container textarea');
addCommentButton = this.byCss('button.adf-comments-input-add');
commentListItem = by.css('.adf-comment-list-item');
commentUserAvatar = by.id('comment-user-icon');
commentUser = by.id('comment-user');
commentText = by.id('comment-message');
commentTime = by.id('comment-time');
commentUserAvatar = by.css('.adf-comment-img-container');
commentUser = by.css('.adf-comment-user-name');
commentText = by.css('.adf-comment-message');
commentTime = by.css('.adf-comment-message-time');
constructor(ancestor?: string) {
super('adf-comments', ancestor);