mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
7ce5d8fd90
Supersedes https://github.com/n8n-io/n8n/pull/6937 Excluding fixtures and test workflow JSONs to avoid having to update tests.
20 lines
606 B
TypeScript
20 lines
606 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 });
|
|
},
|
|
};
|
|
}
|