Merge pull request #2248 from automatisch/AUT-1380

feat: introduce inline error messages in EditUser form
This commit is contained in:
Ali BARIN
2025-01-17 12:05:09 +01:00
committed by GitHub
5 changed files with 128 additions and 74 deletions

View File

@@ -13,9 +13,10 @@ export class AdminEditUserPage extends AuthenticatedPage {
super(page);
this.fullNameInput = page.getByTestId('full-name-input');
this.emailInput = page.getByTestId('email-input');
this.roleInput = page.getByTestId('role.id-autocomplete');
this.roleInput = page.getByTestId('roleId-autocomplete');
this.updateButton = page.getByTestId('update-button');
this.pageTitle = page.getByTestId('edit-user-title');
this.fieldError = page.locator('p[id$="-helper-text"]');
}
/**