[ACS-5016] [E2E] delete actions migrated to playwright (#3868)

* [ACS-5016] [E2E] delete actions migrated to playwright

* [ACS-5016] sonar fix 1

* [ACS-5016] sonar fix 2

* [ACS-5016] upload.effects.spec.ts reverted

* [ACS-5016] upload-file.test.ts reverted

* [ACS-5016] review fix 1
This commit is contained in:
Adam Świderski
2024-06-04 10:54:30 +02:00
committed by GitHub
parent 36fef43fc7
commit 7c92f39127
21 changed files with 866 additions and 635 deletions

View File

@@ -0,0 +1,63 @@
/*!
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Alfresco Example Content Application
*
* 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 { Page } from '@playwright/test';
import { BaseComponent } from '../base.component';
export class AdfDeleteTrashComponent extends BaseComponent {
private static rootElement = 'adf-confirm-dialog';
constructor(page: Page) {
super(page, AdfDeleteTrashComponent.rootElement);
}
dialogTitle = this.getChild('[data-automation-id="adf-confirm-dialog-title"]');
dialogDescription = this.getChild('[data-automation-id="adf-confirm-dialog-base-message"]');
deleteButton = this.getChild('[id="adf-confirm-accept"]');
keepButton = this.getChild('[id="adf-confirm-cancel"]');
async waitForDialog(): Promise<void> {
await this.dialogTitle.waitFor();
}
async isDialogOpen(): Promise<boolean> {
return this.dialogTitle.isVisible();
}
async getDialogTitle(): Promise<string> {
return this.dialogTitle.textContent();
}
async getDialogDescription(): Promise<string> {
return this.dialogDescription.textContent();
}
async isDeleteEnabled(): Promise<boolean> {
return this.deleteButton.isEnabled();
}
async isKeepEnabled(): Promise<boolean> {
return this.keepButton.isEnabled();
}
}

View File

@@ -33,3 +33,4 @@ export * from './share-dialog.component';
export * from './upload-new-version-dialog.component';
export * from './manage-versions-dialog.component';
export * from './upload-dialog.component';
export * from './delete-trash-dialog.component';