1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Fixing cypress filtering.

This commit is contained in:
mike12345567 2022-09-24 11:14:22 +01:00
parent c7fb092294
commit bf0aa31f06

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 })
})
})
}