1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Fixing cypress filtering.

This commit is contained in:
mike12345567 2022-09-24 11:14:22 +01:00
parent 1b021d35a3
commit 1485aa6eb7

View file

@ -402,8 +402,8 @@ Cypress.Commands.add("searchForApplication", appName => {
// Searches for the app
cy.get(".filter").then(() => {
cy.get(".spectrum-Textfield").within(() => {
cy.get("input").eq(0).clear()
cy.get("input").eq(0).type(appName)
cy.get("input").eq(0).clear({ force: true })
cy.get("input").eq(0).type(appName, { force: true })
})
})
}