mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-19 17:14:45 +00:00
* - create a generic-dialog class to remove some duplicated code - add return types * - share dialog needs custom methods - also, fix copy/paste mistake :D
90 lines
3.2 KiB
TypeScript
Executable File
90 lines
3.2 KiB
TypeScript
Executable File
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2020 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 { ElementFinder, by, browser, until } from 'protractor';
|
|
import { BROWSER_WAIT_TIMEOUT } from '../../configs';
|
|
import { GenericDialog } from '../dialog/generic-dialog';
|
|
|
|
export class PasswordDialog extends GenericDialog {
|
|
private static selectors = {
|
|
root: 'adf-pdf-viewer-password-dialog',
|
|
|
|
passwordInput: 'input[type="Password"]',
|
|
errorMessage: '.mat-error',
|
|
|
|
closeButton: by.css('[data-automation-id="adf-password-dialog-close"]'),
|
|
submitButton: by.css('[data-automation-id="adf-password-dialog-submit"]')
|
|
};
|
|
|
|
passwordInput: ElementFinder = this.rootElem.element(by.css(PasswordDialog.selectors.passwordInput));
|
|
errorMessage: ElementFinder = this.rootElem.element(by.css(PasswordDialog.selectors.errorMessage));
|
|
|
|
constructor() {
|
|
super(PasswordDialog.selectors.root);
|
|
}
|
|
|
|
async isCloseEnabled(): Promise<boolean> {
|
|
return this.isButtonEnabled(PasswordDialog.selectors.closeButton);
|
|
}
|
|
|
|
async isSubmitEnabled(): Promise<boolean> {
|
|
return this.isButtonEnabled(PasswordDialog.selectors.submitButton);
|
|
}
|
|
|
|
async clickClose(): Promise<void> {
|
|
await this.clickButton(PasswordDialog.selectors.closeButton);
|
|
}
|
|
|
|
async clickSubmit(): Promise<void> {
|
|
await this.clickButton(PasswordDialog.selectors.submitButton);
|
|
}
|
|
|
|
async isPasswordInputDisplayed(): Promise<boolean> {
|
|
const present = await browser.isElementPresent(this.passwordInput);
|
|
if (present) {
|
|
return this.passwordInput.isDisplayed();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async isErrorDisplayed(): Promise<boolean> {
|
|
const elem = await browser.wait(until.elementLocated(by.css(PasswordDialog.selectors.errorMessage)), BROWSER_WAIT_TIMEOUT, '------- timeout waiting for error message to appear')
|
|
return (await browser.isElementPresent(elem)) && (await elem.isDisplayed());
|
|
}
|
|
|
|
async getErrorMessage(): Promise<string> {
|
|
if (await this.isErrorDisplayed()) {
|
|
return this.errorMessage.getText();
|
|
}
|
|
return '';
|
|
}
|
|
|
|
async enterPassword(password: string): Promise<void> {
|
|
await this.passwordInput.clear();
|
|
await this.passwordInput.sendKeys(password);
|
|
}
|
|
}
|