mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* in progress * moved UserInfoDialogPage, AppListCloudPage, LoginSSOPage and TabsPage. ADF-4166 * moved UserInfoDialogPage, AppListCloudPage, LoginSSOPage and TabsPage. ADF-4166 * linting fixes * crc's * crc's * added adf-testing to package.json file * fix for failing unit tests * fixes * test failure fixes * test failure fixes * reverted ot old location pages/adf/navigationBarPage * added the testing variable to affected-libs file and changed the version to 3.1.0-beta5 and added the missing adf-content-services dependency. * Fix the material export * Remove the reference to the tse2econfig not allowed * fix failing test * Update user-info.page.ts
77 lines
2.5 KiB
TypeScript
77 lines
2.5 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { element, by } from 'protractor';
|
|
|
|
import { Util } from '../../util/util';
|
|
import { TabsPage } from '@alfresco/adf-testing';
|
|
|
|
export class CommentsPage {
|
|
|
|
tabsPage = new TabsPage();
|
|
numberOfComments = element(by.id('comment-header'));
|
|
commentUserIcon = element.all(by.id('comment-user-icon'));
|
|
commentUserName = element.all(by.id('comment-user'));
|
|
commentMessage = element.all(by.id('comment-message'));
|
|
commentTime = element.all(by.id('comment-time'));
|
|
commentInput = element(by.id('comment-input'));
|
|
addCommentButton = element(by.css("[data-automation-id='comments-input-add']"));
|
|
|
|
getTotalNumberOfComments() {
|
|
Util.waitUntilElementIsVisible(this.numberOfComments);
|
|
return this.numberOfComments.getText();
|
|
}
|
|
|
|
checkUserIconIsDisplayed(position) {
|
|
Util.waitUntilElementIsVisible(this.commentUserIcon);
|
|
return this.commentUserIcon.get(position);
|
|
}
|
|
|
|
getUserName(position) {
|
|
Util.waitUntilElementIsVisible(this.commentUserName);
|
|
return this.commentUserName.get(position).getText();
|
|
}
|
|
|
|
getMessage(position) {
|
|
Util.waitUntilElementIsVisible(this.commentMessage);
|
|
return this.commentMessage.get(position).getText();
|
|
}
|
|
|
|
getTime(position) {
|
|
Util.waitUntilElementIsVisible(this.commentTime);
|
|
return this.commentTime.get(position).getText();
|
|
}
|
|
|
|
checkCommentInputIsNotDisplayed() {
|
|
Util.waitUntilElementIsNotVisible(this.commentInput);
|
|
}
|
|
|
|
addComment(comment) {
|
|
Util.waitUntilElementIsVisible(this.commentInput);
|
|
this.commentInput.sendKeys(comment);
|
|
return this.addCommentButton.click();
|
|
}
|
|
|
|
checkCommentsTabIsSelected() {
|
|
this.tabsPage.checkTabIsSelectedByTitle('Comments');
|
|
}
|
|
|
|
checkCommentInputIsDisplayed() {
|
|
Util.waitUntilElementIsVisible(this.commentInput);
|
|
}
|
|
}
|