mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
12 lines
441 B
TypeScript
12 lines
441 B
TypeScript
|
import { BasePage } from './../base';
|
||
|
|
||
|
export class MfaSetupModal extends BasePage {
|
||
|
getters = {
|
||
|
modalContainer: () => cy.getByTestId('changePassword-modal').last(),
|
||
|
tokenInput: () => cy.getByTestId('mfa-token-input'),
|
||
|
copySecretToClipboardButton: () => cy.getByTestId('mfa-secret-button'),
|
||
|
downloadRecoveryCodesButton: () => cy.getByTestId('mfa-recovery-codes-button'),
|
||
|
saveButton: () => cy.getByTestId('mfa-save-button'),
|
||
|
};
|
||
|
}
|