We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1340a21 commit 223fbe6Copy full SHA for 223fbe6
cypress/e2e/Assistant.spec.js
@@ -101,11 +101,16 @@ describe('Assistant', () => {
101
.should('be.visible')
102
.click()
103
104
+ // eslint-disable-next-line cypress/no-unnecessary-waiting
105
+ cy.wait(1000)
106
+
107
cy.get('[data-cy="translate-input"]')
- .click()
108
+ .should('be.visible')
109
+ .focus()
110
111
112
.should('be.focused')
113
+ cy.get('[data-cy="translate-input"]')
114
.type('Hello World')
115
})
116
0 commit comments