1
0
Fork 0
mirror of synced 2024-06-23 08:30:31 +12:00

Fix more cypress tests

This commit is contained in:
Andrew Kingston 2020-10-05 12:37:03 +01:00
parent 380c44fdd2
commit ae0a5d2c51

View file

@ -148,12 +148,12 @@ Cypress.Commands.add("navigateToFrontend", () => {
})
Cypress.Commands.add("createScreen", (screenName, route) => {
cy.get(".newscreen").click()
cy.get("[data-cy=new-screen-dialog] input:first").type(screenName)
if (route) {
cy.get("[data-cy=new-screen-dialog] input:last").type(route)
}
cy.get("[data-cy=create-screen-footer]").within(() => {
cy.contains("Create New Screen").click()
cy.get(".modal").within(() => {
cy.get("input:first").type(screenName)
if (route) {
cy.get("input:last").type(route)
}
cy.contains("Create Screen").click()
})
cy.get(".nav-items-container").within(() => {