Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const Modals = {
  get warning() {
    return cy.get(".ant-modal.ant-modal-confirm-warning");
  },
  hasWarning(text) {
    this.warning.should("be.visible");
    this.warning.contains("Warning").should("be.visible");
    this.warning.contains(text).should("be.visible");
    this.warning.contains("OK").should("be.visible");
  },
  hasNoWarnings() {
    this.warning.should("not.exist");
  },
};