mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-19 17:14:45 +00:00
113 lines
3.6 KiB
TypeScript
Executable File
113 lines
3.6 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, ExpectedConditions as EC } 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 waitForPasswordInputToBeInteractive() {
|
|
await browser.wait(EC.elementToBeClickable(this.passwordInput), BROWSER_WAIT_TIMEOUT, '--- timeout wait for passwordInput ---');
|
|
}
|
|
|
|
async waitForDialogToOpen(): Promise<void> {
|
|
await super.waitForDialogToOpen();
|
|
await this.waitForPasswordInputToBeInteractive();
|
|
}
|
|
|
|
async isDialogOpen(): Promise<boolean> {
|
|
try {
|
|
await this.waitForDialogToOpen();
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
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> {
|
|
try {
|
|
await this.waitForDialogToOpen();
|
|
return (await this.errorMessage.isPresent()) && (await this.errorMessage.isDisplayed());
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|