test: folder tests

This commit is contained in:
Jakub P
2025-04-09 20:01:36 +02:00
parent 1f6010bdea
commit 3b9f86a547
15 changed files with 488 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
const { AuthenticatedPage } = require('../authenticated-page');
export class DeleteFolderDialog extends AuthenticatedPage {
constructor(page) {
super(page);
this.modal = page.getByTestId('delete-folder-modal');
this.cancelButton = this.modal.getByTestId('confirmation-cancel-button');
this.deleteButton = this.modal.getByTestId('confirmation-confirm-button');
this.deleteAlert = this.modal.getByTestId(
'confirmation-dialog-error-alert'
);
}
}