mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
af3ac2db28
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
21 lines
607 B
TypeScript
21 lines
607 B
TypeScript
import { BasePage } from '../base';
|
|
|
|
export class MessageBox extends BasePage {
|
|
getters = {
|
|
modal: () => cy.get('.el-message-box', { withinSubject: null }),
|
|
header: () => this.getters.modal().find('.el-message-box__title'),
|
|
content: () => this.getters.modal().find('.el-message-box__content'),
|
|
confirm: () => this.getters.modal().find('.btn--confirm').first(),
|
|
cancel: () => this.getters.modal().find('.btn--cancel').first(),
|
|
};
|
|
|
|
actions = {
|
|
confirm: () => {
|
|
this.getters.confirm().click({ force: true });
|
|
},
|
|
cancel: () => {
|
|
this.getters.cancel().click({ force: true });
|
|
},
|
|
};
|
|
}
|