CypressError: Timed out retrying: You attempted to make a chai-jQuery assertion on an object that is neither a DOM object or a jQuery object
01:05 24 Dec 2019

Using Cypress, I want to know whether the title of the page is correct. I am taking an example of Google homepage here I am using following command:

cy.title().should('have.value','google')

but I am getting an error:

CypressError: Timed out retrying: You attempted to make a chai-jQuery assertion on an object that is neither a DOM object or a jQuery object.

The chai-jQuery assertion you used was:

value

The invalid subject you asserted on was:

Google

To use chai-jQuery assertions your subject must be valid.

This can sometimes happen if a previous assertion changed the subject. ...........

Can anybody tell the reason for this

jquery chai cypress