Browse Source

Table Test fix - Add row to table

Fixing the command associated with adding a row to a table
pull/4434/head
Mitch-Budibase 4 years ago
parent
commit
bd82ce9704
  1. 1
      .gitignore
  2. 6
      packages/builder/cypress/support/commands.js

1
.gitignore

@ -93,3 +93,4 @@ hosting/.generated-envoy.dev.yaml
# Sublime text
*.sublime-project
*.sublime-workspace
packages/builder/cypress.env.json

6
packages/builder/cypress/support/commands.js

@ -282,12 +282,6 @@ Cypress.Commands.add("addRow", values => {
}
cy.get(".spectrum-ButtonGroup").contains("Create").click()
})
cy.get(".spectrum-Modal").within(() => {
cy.get("input").first().clear().type(screenName)
cy.get("input").eq(1).clear().type(route)
cy.get(".spectrum-Button--cta").click()
cy.wait(2000)
})
})
Cypress.Commands.add("expandBudibaseConnection", () => {

Loading…
Cancel
Save