https://cypress.io logo
okay, so this works. is there a way to accomplish ...
# e2e-testing
b
okay, so this works. is there a way to accomplish this without adding in static waits?
Copy code
cy.get('@item')
                            .click()
                            .find('input')
                            .should('be.visible')
                            .type(rowData['Value']['value'])
                            cy.wait(1000)
                            cy.get('@item')
                            .find('input')
                            .type(`{enter}`)
                            cy.wait(1000)
                            cy.get('@item').should('have.text', rowData['Value']['value'])