Hello, is there a difference in waiting in these c...
# e2e-testing
n
Hello, is there a difference in waiting in these cases: 1.
Copy code
cy.wait('@myRequest')
   cy.get('something')
2.
Copy code
cy.wait('@myRequest').then(() => {
   cy.get('something')
}
3.
Copy code
cy.wait('@myRequest').its('response.statusCode').should('eq',200)
   cy.get('something')