To wait for a specific amount of time or resource to resolve, use the cy.wait()
command.
cy
.get(".wait-input1").type('Wait 1000ms after typing')
.wait(1000)
.get(".wait-input2").type('Wait 1000ms after typing')
.wait(1000)
.get(".wait-input3").type('Wait 1000ms after typing')
.wait(1000)