1
0
Fork 0
mirror of synced 2024-07-14 10:45:51 +12:00
This commit is contained in:
Mitch-Budibase 2022-04-13 16:02:57 +01:00
parent 45c39cbcc0
commit 56b8774b13

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