Fixing cypress filtering.
This commit is contained in:
parent
1b021d35a3
commit
1485aa6eb7
|
@ -402,8 +402,8 @@ Cypress.Commands.add("searchForApplication", appName => {
|
||||||
// Searches for the app
|
// Searches for the app
|
||||||
cy.get(".filter").then(() => {
|
cy.get(".filter").then(() => {
|
||||||
cy.get(".spectrum-Textfield").within(() => {
|
cy.get(".spectrum-Textfield").within(() => {
|
||||||
cy.get("input").eq(0).clear()
|
cy.get("input").eq(0).clear({ force: true })
|
||||||
cy.get("input").eq(0).type(appName)
|
cy.get("input").eq(0).type(appName, { force: true })
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue