mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
2 years ago
|
import { expect, Page } from '@playwright/test';
|
||
|
import BasePage from '../Base';
|
||
|
|
||
|
export class ChangePasswordPage extends BasePage {
|
||
|
constructor(rootPage: Page) {
|
||
|
super(rootPage);
|
||
|
}
|
||
|
|
||
|
get() {
|
||
2 years ago
|
return this.rootPage.getByTestId('nc-user-settings-form');
|
||
2 years ago
|
}
|
||
|
|
||
|
async changePassword({
|
||
|
oldPass,
|
||
|
newPass,
|
||
|
repeatPass,
|
||
|
networkValidation,
|
||
|
}: {
|
||
|
oldPass: string;
|
||
|
newPass: string;
|
||
|
repeatPass: string;
|
||
|
networkValidation?: boolean;
|
||
|
}) {
|
||
|
const currentPassword = this.get().locator('input[data-testid="nc-user-settings-form__current-password"]');
|
||
|
const newPassword = this.get().locator('input[data-testid="nc-user-settings-form__new-password"]');
|
||
|
const confirmPassword = this.get().locator('input[data-testid="nc-user-settings-form__new-password-repeat"]');
|
||
|
|
||
|
await currentPassword.fill(oldPass);
|
||
|
await newPassword.fill(newPass);
|
||
|
await confirmPassword.fill(repeatPass);
|
||
|
|
||
|
const submitChangePassword = this.get().locator('button[data-testid="nc-user-settings-form__submit"]').click();
|
||
|
if (networkValidation) {
|
||
|
await this.waitForResponse({
|
||
|
uiAction: submitChangePassword,
|
||
|
httpMethodsToMatch: ['POST'],
|
||
|
requestUrlPathToMatch: 'api/v1/auth/password/change',
|
||
|
});
|
||
|
} else {
|
||
|
await submitChangePassword;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async verifyFormError({ error }: { error: string }) {
|
||
|
await expect(this.get().getByTestId('nc-user-settings-form__error')).toHaveText(error);
|
||
|
}
|
||
|
|
||
|
async verifyPasswordDontMatchError() {
|
||
|
await expect(this.rootPage.locator('.ant-form-item-explain-error')).toHaveText('Passwords do not match');
|
||
|
}
|
||
|
}
|