budibase/packages/builder/cypress/integration/createAutomation.spec.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

context("Create a automation", () => {
2020-09-14 14:29:32 +02:00
before(() => {
2021-04-15 19:29:11 +02:00
cy.login()
cy.createTestApp()
2020-09-14 14:29:32 +02:00
})
// https://on.cypress.io/interacting-with-elements
it("should create a automation", () => {
2020-09-14 14:29:32 +02:00
cy.createTestTableWithData()
2021-09-15 17:55:17 +02:00
cy.wait(2000)
cy.contains("Automate").click()
cy.get("[data-cy='new-screen'] > .spectrum-Icon").click()
2021-09-15 17:55:17 +02:00
cy.get(".modal-inner-wrapper").within(() => {
cy.get("input").type("Add Row")
2021-09-15 17:55:17 +02:00
cy.contains("Row Created").click()
cy.wait(500)
cy.get(".spectrum-Button--cta").click()
})
2020-09-14 14:29:32 +02:00
2021-09-15 17:55:17 +02:00
// Setup trigger
cy.contains("Setup").click()
cy.get(".spectrum-Picker-label").click()
cy.wait(500)
cy.contains("dog").click()
2020-09-14 14:29:32 +02:00
// Create action
2021-09-15 17:55:17 +02:00
cy.contains("Add Action").click()
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("goodboy")
cy.get(".spectrum-Textfield-input")
.eq(1)
.type("11")
cy.contains("Run test").click()
cy.get(".modal-inner-wrapper").within(() => {
cy.wait(1000)
cy.get(".spectrum-Picker-label").click()
cy.contains("dog").click()
2021-07-27 23:48:06 +02:00
cy.get(".spectrum-Textfield-input")
2021-02-23 15:28:05 +01:00
.first()
.type("goodboy")
2021-07-27 23:48:06 +02:00
cy.get(".spectrum-Textfield-input")
2021-02-23 15:28:05 +01:00
.eq(1)
.type("11")
2021-09-15 17:55:17 +02:00
cy.get(".spectrum-Textfield-input")
.eq(2)
.type("123456")
cy.get(".spectrum-Textfield-input")
.eq(3)
.type("123456")
2020-09-18 17:13:42 +02:00
})
2020-09-14 14:29:32 +02:00
})
})