This commit is contained in:
Mitch-Budibase 2022-04-12 17:33:17 +01:00
parent eba7df7255
commit 761ac69783
1 changed files with 4 additions and 5 deletions

View File

@ -75,18 +75,18 @@ Cypress.Commands.add("deleteApp", name => {
} }
return acc return acc
}, "") }, "")
if (appId == "") { if (appId == "") {
return return
} }
const appIdParsed = appId.split("_").pop() const appIdParsed = appId.split("_").pop()
const actionEleId = `[data-cy=row_actions_${appIdParsed}]` const actionEleId = `[data-cy=row_actions_${appIdParsed}]`
cy.get(actionEleId).within(() => { cy.get(actionEleId).within(() => {
cy.get(".spectrum-Icon").eq(0).click() cy.get(".spectrum-Icon").eq(0).click()
}) })
} }
cy.get(".spectrum-Menu").then($menu => { cy.get(".spectrum-Menu").then($menu => {
if ($menu.text().includes("Unpublish")) { if ($menu.text().includes("Unpublish")) {
cy.get(".spectrum-Menu").contains("Unpublish").click() cy.get(".spectrum-Menu").contains("Unpublish").click()
@ -102,8 +102,7 @@ Cypress.Commands.add("deleteApp", name => {
} else { } else {
return return
} }
} } else {
else {
return return
} }
}) })