[AAE-7154] Automate upload file dialog (#2418)

* [AAE-7154] Automate upload files dialog

* [ACA-71546] Fix for sigout

* update test

* delete comment

* fix lint

* fix

* fix after CR

* CR

Co-authored-by: Bartosz Sekula <Bartosz.Sekula@hyland.com>
This commit is contained in:
Ketevani Kvirikashvili
2022-02-16 00:57:23 +02:00
committed by GitHub
parent 488658802d
commit 22d65f006d
5 changed files with 94 additions and 31 deletions

View File

@@ -34,3 +34,4 @@ export * from './password-dialog';
export * from './select-template-dialog';
export * from './share-dialog';
export * from './upload-new-version-dialog';
export * from './upload-files-dialog';

View File

@@ -0,0 +1,40 @@
/*!
* @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 { TestElement } from '@alfresco/adf-testing';
export class UploadFilesDialog {
uploadDialog = TestElement.byCss('.adf-upload-dialog');
closeUploadButton = TestElement.byCss('.adf-upload-dialog [id="adf-upload-dialog-close"]');
minimizeButton = TestElement.byCss('.adf-upload-dialog mat-icon[title="Minimize"]');
maximizeButton = TestElement.byCss('.adf-upload-dialog mat-icon[title="Maximize"]');
uploadedFiles = TestElement.byCss('.adf-file-uploading-row__name');
async closeUploadDialog(): Promise<void> {
if (await this.uploadDialog.isVisible()) {
this.closeUploadButton.click();
}
}
}