This commit is contained in:
Mitch-Budibase 2022-04-13 16:02:57 +01:00
parent eb31242b20
commit 9ba48660d2
1 changed files with 3 additions and 1 deletions

View File

@ -415,7 +415,9 @@ Cypress.Commands.add("addDatasourceConfig", (datasource, skipFetch) => {
if (datasource == "Oracle") {
cy.get("input").clear().type(Cypress.env("oracle").HOST)
} else {
cy.get("input").clear({ force: true }).type(Cypress.env("HOST_IP"), { force: true })
cy.get("input")
.clear({ force: true })
.type(Cypress.env("HOST_IP"), { force: true })
}
})
})