/*! * @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 . */ 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 { return this.isButtonEnabled(PasswordDialog.selectors.closeButton); } async isSubmitEnabled(): Promise { return this.isButtonEnabled(PasswordDialog.selectors.submitButton); } async clickClose(): Promise { await this.clickButton(PasswordDialog.selectors.closeButton); } async clickSubmit(): Promise { await this.clickButton(PasswordDialog.selectors.submitButton); } async isPasswordInputDisplayed(): Promise { const present = await browser.isElementPresent(this.passwordInput); if (present) { return this.passwordInput.isDisplayed(); } else { return false; } } async isErrorDisplayed(): Promise { 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 { if (await this.isErrorDisplayed()) { return this.errorMessage.getText(); } return ''; } async enterPassword(password: string): Promise { await this.passwordInput.clear(); await this.passwordInput.sendKeys(password); } }