mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
export function getSaveChangesModal() {
|
|
return cy.get('.el-overlay').contains('Save changes before leaving?');
|
|
}
|
|
|
|
// this is the button next to 'Save Changes'
|
|
export function getCancelSaveChangesButton() {
|
|
return cy.get('.btn--cancel');
|
|
}
|
|
|
|
// This is the top right 'x'
|
|
export function getCloseSaveChangesButton() {
|
|
return cy.get('.el-message-box__headerbtn');
|
|
}
|