diff --git a/packages/bbui/src/Form/Core/Switch.svelte b/packages/bbui/src/Form/Core/Switch.svelte
index 0d40e67007..a19675d872 100644
--- a/packages/bbui/src/Form/Core/Switch.svelte
+++ b/packages/bbui/src/Form/Core/Switch.svelte
@@ -6,15 +6,18 @@
export let id = null
export let text = null
export let disabled = false
+ export let dataCy = null
const dispatch = createEventDispatcher()
const onChange = event => {
dispatch("change", event.target.checked)
}
+
{
@@ -18,5 +19,5 @@
-
+
diff --git a/packages/builder/cypress/integration/createAutomation.spec.js b/packages/builder/cypress/integration/createAutomation.spec.js
index 75611eff06..e82eeff670 100644
--- a/packages/builder/cypress/integration/createAutomation.spec.js
+++ b/packages/builder/cypress/integration/createAutomation.spec.js
@@ -29,10 +29,10 @@ context("Create a automation", () => {
cy.get(".setup").within(() => {
cy.get(".spectrum-Picker-label").click()
cy.contains("dog").click()
- cy.get("input")
+ cy.get(".spectrum-Textfield-input")
.first()
.type("goodboy")
- cy.get("input")
+ cy.get(".spectrum-Textfield-input")
.eq(1)
.type("11")
})
@@ -41,7 +41,7 @@ context("Create a automation", () => {
cy.contains("Save Automation").click()
// Activate Automation
- cy.get("[aria-label=PlayCircle]").click()
+ cy.get("[data-cy=activate-automation]").click()
})
it("should add row when a new row is added", () => {
diff --git a/packages/builder/src/components/automation/SetupPanel/SetupPanel.svelte b/packages/builder/src/components/automation/SetupPanel/SetupPanel.svelte
index c6235f6f40..06a0df1afa 100644
--- a/packages/builder/src/components/automation/SetupPanel/SetupPanel.svelte
+++ b/packages/builder/src/components/automation/SetupPanel/SetupPanel.svelte
@@ -51,7 +51,7 @@
setAutomationLive(!automationLive)}
- data-cy="activate-automation"
+ dataCy="activate-automation"
text="Live"
/>