2020-09-21 14:49:34 +02:00
|
|
|
context("Create a automation", () => {
|
2020-09-14 14:29:32 +02:00
|
|
|
before(() => {
|
2021-04-15 19:29:11 +02:00
|
|
|
cy.login()
|
2021-03-05 15:36:38 +01:00
|
|
|
cy.createTestApp()
|
2020-09-14 14:29:32 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// https://on.cypress.io/interacting-with-elements
|
2020-09-21 14:49:34 +02:00
|
|
|
it("should create a automation", () => {
|
2020-09-14 14:29:32 +02:00
|
|
|
cy.createTestTableWithData()
|
|
|
|
|
2021-05-25 16:57:38 +02:00
|
|
|
cy.contains("Automate").click()
|
|
|
|
cy.get("[data-cy='new-screen'] > .spectrum-Icon").click()
|
|
|
|
cy.get(".spectrum-Dialog-grid").within(() => {
|
2020-10-09 20:10:28 +02:00
|
|
|
cy.get("input").type("Add Row")
|
2021-05-25 16:57:38 +02:00
|
|
|
cy.get(".spectrum-Button--cta").click()
|
2020-10-05 12:13:09 +02:00
|
|
|
})
|
2020-09-14 14:29:32 +02:00
|
|
|
|
|
|
|
// Add trigger
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.contains("Trigger").click()
|
2021-02-23 15:28:05 +01:00
|
|
|
cy.contains("Row Created").click()
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.get(".setup").within(() => {
|
2021-05-25 16:57:38 +02:00
|
|
|
cy.get(".spectrum-Picker-label").click()
|
|
|
|
cy.contains("dog").click()
|
2020-09-18 17:13:42 +02:00
|
|
|
})
|
2020-09-14 14:29:32 +02:00
|
|
|
|
|
|
|
// Create action
|
2021-09-14 13:40:19 +02:00
|
|
|
cy.contains("Internal").click()
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.contains("Create Row").click()
|
|
|
|
cy.get(".setup").within(() => {
|
2021-05-25 16:57:38 +02:00
|
|
|
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")
|
2020-09-18 17:13:42 +02:00
|
|
|
})
|
2020-09-14 14:29:32 +02:00
|
|
|
|
|
|
|
// Save
|
2020-09-21 14:49:34 +02:00
|
|
|
cy.contains("Save Automation").click()
|
2020-09-14 14:29:32 +02:00
|
|
|
|
2020-09-21 14:49:34 +02:00
|
|
|
// Activate Automation
|
2021-07-27 23:48:06 +02:00
|
|
|
cy.get("[data-cy=activate-automation]").click()
|
2020-09-14 14:29:32 +02:00
|
|
|
})
|
|
|
|
|
2020-10-09 20:10:28 +02:00
|
|
|
it("should add row when a new row is added", () => {
|
2021-05-25 16:57:38 +02:00
|
|
|
cy.contains("Data").click()
|
2020-10-09 20:10:28 +02:00
|
|
|
cy.addRow(["Rover", 15])
|
2020-09-14 14:29:32 +02:00
|
|
|
cy.reload()
|
|
|
|
cy.contains("goodboy").should("have.text", "goodboy")
|
|
|
|
})
|
|
|
|
})
|