I am trying to assert the following where propSizeSel is the CSS selector to my numerical input element:
cy.get(propSizeSel).clear().type(100)
.should('contain', 100);
Unfortunately, this assertion fails in the following manner despite the input element accepting the value of 100.
As you can see the input element has accepted the value 100 as expected:
Why is it that I can't seem to make this simple assertion?

