I have dynamic checkboxes (anything from 1-20 checkboxes). I want to check if all checkboxes are unchecked.
I have tried serval ways without any success.
//is true even if it is checked
cy.get('[type="checkbox"]').not("checked");
cy.get('[type="checkbox"]').should('have.attr', 'checked', false)