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,18 @@
const { AuthenticatedPage } = require('../authenticated-page');
export class MoveFolderDialog extends AuthenticatedPage {
constructor(page) {
super(page);
this.folderNameAutocomplete = page
.getByTestId('move-to-folder-name')
.locator('input');
this.moveButton = page.getByTestId(
'flow-folder-change-dialog-confirm-button'
);
this.successAlert = page.getByTestId(
'flow-folder-change-dialog-success-alert'
);
this.closeDialog = page.getByTestId('close-dialog');
}
}