mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
2b7ba6fdf1
https://linear.app/n8n/issue/ADO-947/sync-branch-with-master-and-fix-fe-e2e-tets --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
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'),
|
|
};
|
|
}
|