This thread on Github demonstrates the method for using Cypress to verify that an element has a specific height.
cy.get(mainMenu).should('have.css', 'height', '55px')
How can I utilize Cypress to confirm that an element exceeds a specified height?
For instance, I aim to validate that a particular HTML element always maintains a height greater than 100px.