1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/packages/builder/cypress/integration/createAutomation.spec.js

66 lines
1.9 KiB
JavaScript
Raw Normal View History

context("Create a automation", () => {
2020-09-15 00:29:32 +12:00
before(() => {
2021-04-16 05:29:11 +12:00
cy.login()
cy.createTestApp()
2020-09-15 00:29:32 +12:00
})
it("should create a automation", () => {
2020-09-15 00:29:32 +12:00
cy.createTestTableWithData()
2021-09-16 03:55:17 +12:00
cy.wait(2000)
cy.contains("Automate").click()
cy.get("[data-cy='new-screen'] > .spectrum-Icon").click()
2021-09-16 03:55:17 +12:00
cy.get(".modal-inner-wrapper").within(() => {
cy.get("input").type("Add Row")
2021-11-26 23:42:37 +13:00
cy.contains("Row Created").click({ force: true })
2021-09-16 03:55:17 +12:00
cy.wait(500)
cy.get(".spectrum-Button--cta").click()
})
2020-09-15 00:29:32 +12:00
2021-09-16 03:55:17 +12:00
// Setup trigger
cy.contains("Setup").click()
cy.get(".spectrum-Picker-label").click()
cy.wait(500)
cy.contains("dog").click()
2021-11-22 22:43:57 +13:00
cy.wait(2000)
2020-09-15 00:29:32 +12:00
// Create action
cy.get('[aria-label="AddCircle"]').eq(1).click()
2021-09-16 03:55:17 +12:00
cy.get(".modal-inner-wrapper").within(() => {
cy.wait(1000)
cy.contains("Create Row").trigger('mouseover').click().click()
cy.get(".spectrum-Button--cta").click()
})
cy.contains("Setup").click()
cy.get(".spectrum-Picker-label").click()
cy.contains("dog").click()
cy.get(".spectrum-Textfield-input")
.first()
.type("{{ trigger.row.name }}", { parseSpecialCharSequences: false })
2021-09-16 03:55:17 +12:00
cy.get(".spectrum-Textfield-input")
.eq(1)
.type("11")
cy.contains("Finish and test automation").click()
2021-09-16 03:55:17 +12:00
cy.get(".modal-inner-wrapper").within(() => {
cy.wait(1000)
cy.get(".spectrum-Picker-label").click()
cy.contains("dog").click()
cy.wait(1000)
2021-07-28 09:48:06 +12:00
cy.get(".spectrum-Textfield-input")
2021-02-24 03:28:05 +13:00
.first()
.type("automationGoodboy")
2021-07-28 09:48:06 +12:00
cy.get(".spectrum-Textfield-input")
2021-02-24 03:28:05 +13:00
.eq(1)
.type("11")
2021-09-16 03:55:17 +12:00
cy.get(".spectrum-Textfield-input")
.eq(2)
.type("123456")
cy.get(".spectrum-Textfield-input")
.eq(3)
.type("123456")
cy.contains("Test").click()
2020-09-19 03:13:42 +12:00
})
cy.contains("Data").click()
cy.contains("automationGoodboy")
2020-09-15 00:29:32 +12:00
})
})