mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
* add item.id to File Libraries * add method to wait for node to be indexed * create separate methods in queries API to wait for sites or wait for nodes * improvements, renaming * renaming * fix * add tests for actions on search results * add wait and use new method * fix * another fix * use correct method * more fixes * create method for clickView button * fixes * no message
118 lines
4.2 KiB
TypeScript
Executable File
118 lines
4.2 KiB
TypeScript
Executable File
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2018 Alfresco Software Limited
|
|
*
|
|
* This file is part of the Alfresco Example Content Application.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { browser, by, ElementFinder, ExpectedConditions as EC, until } from 'protractor';
|
|
import { BROWSER_WAIT_TIMEOUT, USE_HASH_STRATEGY } from './../configs';
|
|
|
|
export abstract class Page {
|
|
protected static locators = {
|
|
app: 'app-root',
|
|
layout: 'app-layout',
|
|
overlay: '.cdk-overlay-container',
|
|
dialogContainer: '.mat-dialog-container',
|
|
snackBarContainer: '.mat-snack-bar-container',
|
|
snackBar: '.mat-simple-snackbar',
|
|
snackBarAction: '.mat-simple-snackbar-action button',
|
|
|
|
genericError: 'aca-generic-error',
|
|
genericErrorIcon: 'aca-generic-error .mat-icon',
|
|
genericErrorTitle: '.generic-error__title'
|
|
};
|
|
|
|
app: ElementFinder = browser.element(by.css(Page.locators.app));
|
|
layout: ElementFinder = browser.element(by.css(Page.locators.layout));
|
|
overlay: ElementFinder = browser.element(by.css(Page.locators.overlay));
|
|
snackBar: ElementFinder = browser.element(by.css(Page.locators.snackBar));
|
|
dialogContainer: ElementFinder = browser.element(by.css(Page.locators.dialogContainer));
|
|
snackBarContainer: ElementFinder = browser.element(by.css(Page.locators.snackBarContainer));
|
|
snackBarAction: ElementFinder = browser.element(by.css(Page.locators.snackBarAction));
|
|
|
|
genericError: ElementFinder = browser.element(by.css(Page.locators.genericError));
|
|
genericErrorIcon: ElementFinder = browser.element(by.css(Page.locators.genericErrorIcon));
|
|
genericErrorTitle: ElementFinder = browser.element(by.css(Page.locators.genericErrorTitle));
|
|
|
|
constructor(public url: string = '') {}
|
|
|
|
getTitle() {
|
|
return browser.getTitle();
|
|
}
|
|
|
|
load(relativeUrl: string = '') {
|
|
const hash = USE_HASH_STRATEGY ? '/#' : '';
|
|
const path = `${browser.baseUrl}${hash}${this.url}${relativeUrl}`;
|
|
return browser.get(path);
|
|
}
|
|
|
|
waitForApp() {
|
|
return browser.wait(EC.presenceOf(this.layout), BROWSER_WAIT_TIMEOUT);
|
|
}
|
|
|
|
waitForSnackBarToAppear() {
|
|
return browser.wait(until.elementLocated(by.css('.mat-snack-bar-container')), BROWSER_WAIT_TIMEOUT, '------- timeout waiting for snackbar to appear');
|
|
}
|
|
|
|
async waitForSnackBarToClose() {
|
|
await browser.wait(EC.not(EC.visibilityOf(this.snackBarContainer)), BROWSER_WAIT_TIMEOUT);
|
|
}
|
|
|
|
async waitForDialog() {
|
|
await browser.wait(EC.visibilityOf(this.dialogContainer), BROWSER_WAIT_TIMEOUT);
|
|
}
|
|
|
|
async refresh() {
|
|
await browser.refresh();
|
|
await this.waitForApp();
|
|
}
|
|
|
|
async getSnackBarMessage() {
|
|
const elem = await this.waitForSnackBarToAppear();
|
|
return await elem.getAttribute('innerText');
|
|
}
|
|
|
|
async clickSnackBarAction() {
|
|
try {
|
|
const action = browser.wait(until.elementLocated(by.css('.mat-simple-snackbar-action button')), BROWSER_WAIT_TIMEOUT, '------- timeout waiting for snack action to appear');
|
|
return await action.click();
|
|
} catch (e) {
|
|
console.log(e, '.......failed on click snack bar action.........');
|
|
}
|
|
}
|
|
|
|
async isGenericErrorDisplayed() {
|
|
return await this.genericError.isDisplayed();
|
|
}
|
|
|
|
async getGenericErrorTitle() {
|
|
return await this.genericErrorTitle.getText();
|
|
}
|
|
|
|
|
|
async isUndoActionPresent() {
|
|
const message = await this.snackBar.getAttribute('innerText');
|
|
return message.includes('Undo');
|
|
}
|
|
|
|
}
|