mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 01:28:58 +03:00
8494c97821
✅ Added tests for personal user settings
13 lines
559 B
TypeScript
13 lines
559 B
TypeScript
import { BasePage } from './../base';
|
|
|
|
export class ChangePasswordModal extends BasePage {
|
|
getters = {
|
|
modalContainer: () => cy.getByTestId('changePassword-modal').last(),
|
|
currentPasswordInput: () => cy.getByTestId('currentPassword').find('input').first(),
|
|
newPasswordInputContainer: () => cy.getByTestId('password'),
|
|
newPasswordInput: () => cy.getByTestId('password').find('input').first(),
|
|
repeatPasswordInput: () => cy.getByTestId('password2').find('input').first(),
|
|
changePasswordButton: () => cy.getByTestId('change-password-button'),
|
|
};
|
|
}
|