[ACS-9743] enable fix e2e (#4603)

* [ACS-9743] enable fix e2e

* revert changes to delete-undo-delete.e2e.ts
This commit is contained in:
Akash Rathod
2025-06-06 09:39:58 +02:00
committed by GitHub
parent f847231204
commit a94866afb0
5 changed files with 5 additions and 13 deletions

View File

@@ -252,7 +252,7 @@ export class DataTableComponent extends BaseComponent {
const row = this.getRowByName(name);
await row.hover();
await row.locator(this.uncheckedCheckbox).click();
await row.locator(this.checkedCheckbox).waitFor({ state: 'attached' });
await row.locator(this.checkedCheckbox).waitFor({ state: 'visible', timeout: timeouts.large });
}
}
}

View File

@@ -30,7 +30,7 @@ import { timeouts } from '../../utils';
export class ViewerComponent extends BaseComponent {
private static rootElement = 'adf-viewer';
public viewerLocator = this.getChild('.adf-viewer-render-layout-content');
public viewerLocator = this.getChild('adf-viewer-render');
public closeButtonLocator = this.getChild('.adf-viewer-close-button');
public fileTitleButtonLocator = this.getChild('.adf-viewer__file-title');
public pdfViewerContentPages = this.getChild('.adf-pdf-viewer__content .page');