Merge branch 'main' into AUT-1372
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
const { expect } = require('@playwright/test');
|
||||
|
||||
const { faker } = require('@faker-js/faker');
|
||||
const { AuthenticatedPage } = require('../authenticated-page');
|
||||
|
||||
@@ -11,7 +13,7 @@ export class AdminCreateUserPage 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.createButton = page.getByTestId('create-button');
|
||||
this.pageTitle = page.getByTestId('create-user-title');
|
||||
this.invitationEmailInfoAlert = page.getByTestId(
|
||||
@@ -20,6 +22,8 @@ export class AdminCreateUserPage extends AuthenticatedPage {
|
||||
this.acceptInvitationLink = page
|
||||
.getByTestId('invitation-email-info-alert')
|
||||
.getByRole('link');
|
||||
this.createUserSuccessAlert = page.getByTestId('create-user-success-alert');
|
||||
this.fieldError = page.locator('p[id$="-helper-text"]');
|
||||
}
|
||||
|
||||
seed(seed) {
|
||||
@@ -32,4 +36,8 @@ export class AdminCreateUserPage extends AuthenticatedPage {
|
||||
email: faker.internet.email().toLowerCase(),
|
||||
};
|
||||
}
|
||||
|
||||
async expectCreateUserSuccessAlertToBeVisible() {
|
||||
await expect(this.createUserSuccessAlert).toBeVisible();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ export class DeleteRoleModal {
|
||||
this.modal = page.getByTestId('delete-role-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');
|
||||
}
|
||||
|
||||
async close () {
|
||||
|
||||
@@ -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"]');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user