The following:
cy.get( '@bar' ).
its( 'clientHeight' ).
should( 'eq', '300px' );
Fails with this CypressError:
Timed out retrying: cy.its() errored because the property: clientHeight does not exist on your subject.
cy.its() waited for the specified property clientHeight to exist, but it never did.
The browser supports Element.clientHeight because I use it in the code, and other assertions on the same alias correctly pass.
Thanks in advance for any suggestions!