2020-06-09 13:52:00 +02:00
|
|
|
// ***********************************************
|
|
|
|
// This example commands.js shows you how to
|
|
|
|
// create various custom commands and overwrite
|
|
|
|
// existing commands.
|
|
|
|
//
|
|
|
|
// For more comprehensive examples of custom
|
|
|
|
// commands please read more here:
|
|
|
|
// https://on.cypress.io/custom-commands
|
|
|
|
// ***********************************************
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a parent command --
|
|
|
|
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a child command --
|
|
|
|
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a dual command --
|
|
|
|
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This will overwrite an existing command --
|
|
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
2020-06-11 12:04:31 +02:00
|
|
|
|
2020-08-05 16:18:28 +02:00
|
|
|
Cypress.Commands.add("createApp", name => {
|
|
|
|
cy.contains("Create New Web App").click()
|
|
|
|
|
|
|
|
cy.get("body")
|
|
|
|
.then($body => {
|
|
|
|
if ($body.find("input[name=apiKey]").length) {
|
|
|
|
// input was found, do something else here
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input[name=apiKey]")
|
|
|
|
.type(name)
|
|
|
|
.should("have.value", name)
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.contains("Next").click()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
cy.get("input[name=applicationName]")
|
|
|
|
.type(name)
|
|
|
|
.should("have.value", name)
|
|
|
|
|
|
|
|
cy.contains("Next").click()
|
|
|
|
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input[name=username]")
|
|
|
|
.click()
|
|
|
|
.type("test")
|
|
|
|
cy.get("input[name=password]")
|
|
|
|
.click()
|
|
|
|
.type("test")
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.contains("Submit").click()
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.get("[data-cy=new-table]", {
|
2020-09-05 01:03:08 +02:00
|
|
|
timeout: 20000,
|
2020-08-05 16:18:28 +02:00
|
|
|
}).should("be.visible")
|
|
|
|
})
|
2020-06-11 12:04:31 +02:00
|
|
|
})
|
2020-08-05 16:18:28 +02:00
|
|
|
|
2020-09-03 13:02:15 +02:00
|
|
|
Cypress.Commands.add("createTestTableWithData", () => {
|
|
|
|
cy.createTable("dog")
|
2020-10-05 12:13:09 +02:00
|
|
|
cy.addColumn("dog", "name", "Text")
|
2020-09-03 13:02:15 +02:00
|
|
|
cy.addColumn("dog", "age", "Number")
|
|
|
|
})
|
|
|
|
|
2020-08-10 16:34:37 +02:00
|
|
|
Cypress.Commands.add("createTable", tableName => {
|
2020-10-09 19:49:23 +02:00
|
|
|
// Enter table name
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.get("[data-cy=new-table]").click()
|
2020-10-08 12:36:16 +02:00
|
|
|
cy.get(".modal").within(() => {
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input")
|
|
|
|
.first()
|
|
|
|
.type(tableName)
|
|
|
|
cy.get(".buttons")
|
|
|
|
.contains("Create")
|
|
|
|
.click()
|
2020-10-08 12:36:16 +02:00
|
|
|
})
|
2020-08-10 16:34:37 +02:00
|
|
|
cy.contains(tableName).should("be.visible")
|
|
|
|
})
|
2020-06-11 18:14:28 +02:00
|
|
|
|
2020-08-10 16:34:37 +02:00
|
|
|
Cypress.Commands.add("addColumn", (tableName, columnName, type) => {
|
|
|
|
// Select Table
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.contains(".nav-item", tableName).click()
|
2020-08-10 18:51:30 +02:00
|
|
|
cy.contains("Create New Column").click()
|
2020-06-11 18:14:28 +02:00
|
|
|
|
2020-10-05 12:13:09 +02:00
|
|
|
// Configure column
|
2020-10-26 22:43:04 +01:00
|
|
|
cy.get(".actions").within(() => {
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input")
|
|
|
|
.first()
|
|
|
|
.type(columnName)
|
2020-10-15 09:17:26 +02:00
|
|
|
// Unset table display column
|
|
|
|
cy.contains("display column").click()
|
2020-10-05 12:13:09 +02:00
|
|
|
cy.get("select").select(type)
|
|
|
|
cy.contains("Save").click()
|
|
|
|
})
|
2020-06-11 12:04:31 +02:00
|
|
|
})
|
2020-08-05 16:18:28 +02:00
|
|
|
|
2020-10-09 20:10:28 +02:00
|
|
|
Cypress.Commands.add("addRow", values => {
|
2020-08-10 18:51:30 +02:00
|
|
|
cy.contains("Create New Row").click()
|
2020-06-11 12:04:31 +02:00
|
|
|
|
2020-10-05 12:13:09 +02:00
|
|
|
cy.get(".modal").within(() => {
|
|
|
|
for (let i = 0; i < values.length; i++) {
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input")
|
|
|
|
.eq(i)
|
|
|
|
.type(values[i])
|
2020-10-05 12:13:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Save
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get(".buttons")
|
|
|
|
.contains("Create")
|
|
|
|
.click()
|
2020-10-05 12:13:09 +02:00
|
|
|
})
|
2020-06-11 12:04:31 +02:00
|
|
|
})
|
|
|
|
|
2020-09-03 13:02:15 +02:00
|
|
|
Cypress.Commands.add("createUser", (username, password, accessLevel) => {
|
2020-06-11 18:14:28 +02:00
|
|
|
// Create User
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.contains("Users").click()
|
2020-06-11 12:04:31 +02:00
|
|
|
|
2020-11-27 14:17:31 +01:00
|
|
|
cy.contains("Create New Row").click()
|
|
|
|
|
|
|
|
cy.get(".modal").within(() => {
|
|
|
|
cy.get("input")
|
|
|
|
.first()
|
|
|
|
.type(password)
|
|
|
|
cy.get("input")
|
|
|
|
.eq(1)
|
|
|
|
.type(username)
|
|
|
|
cy.get("select")
|
|
|
|
.first()
|
|
|
|
.select(accessLevel)
|
|
|
|
|
|
|
|
// Save
|
|
|
|
cy.get(".buttons")
|
|
|
|
.contains("Create Row")
|
|
|
|
.click()
|
|
|
|
})
|
2020-06-11 12:56:16 +02:00
|
|
|
})
|
|
|
|
|
2020-06-11 18:14:28 +02:00
|
|
|
Cypress.Commands.add("addHeadlineComponent", text => {
|
|
|
|
cy.get(".switcher > :nth-child(2)").click()
|
2020-06-11 12:56:16 +02:00
|
|
|
|
2020-06-11 18:14:28 +02:00
|
|
|
cy.get("[data-cy=Text]").click()
|
|
|
|
cy.get("[data-cy=Headline]").click()
|
|
|
|
cy.get(".tabs > :nth-child(2)").click()
|
2020-08-05 16:18:28 +02:00
|
|
|
cy.contains("Settings").click()
|
|
|
|
cy.get('input[name="text"]').type(text)
|
2020-06-11 18:14:28 +02:00
|
|
|
cy.contains("Design").click()
|
2020-06-11 16:40:07 +02:00
|
|
|
})
|
2020-06-11 18:14:28 +02:00
|
|
|
Cypress.Commands.add("addButtonComponent", () => {
|
|
|
|
cy.get(".switcher > :nth-child(2)").click()
|
2020-06-11 16:40:07 +02:00
|
|
|
|
2020-06-11 18:14:28 +02:00
|
|
|
cy.get("[data-cy=Button]").click()
|
|
|
|
})
|
2020-06-24 17:16:06 +02:00
|
|
|
|
2020-06-24 17:20:58 +02:00
|
|
|
Cypress.Commands.add("navigateToFrontend", () => {
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.contains("design").click()
|
2020-06-24 17:16:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
Cypress.Commands.add("createScreen", (screenName, route) => {
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.get("[data-cy=new-screen]").click()
|
2020-10-05 13:37:03 +02:00
|
|
|
cy.get(".modal").within(() => {
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input")
|
|
|
|
.eq(0)
|
|
|
|
.type(screenName)
|
2020-10-05 13:37:03 +02:00
|
|
|
if (route) {
|
2020-10-28 18:40:14 +01:00
|
|
|
cy.get("input")
|
|
|
|
.eq(1)
|
|
|
|
.type(route)
|
2020-10-05 13:37:03 +02:00
|
|
|
}
|
2020-06-24 17:20:58 +02:00
|
|
|
cy.contains("Create Screen").click()
|
|
|
|
})
|
|
|
|
cy.get(".nav-items-container").within(() => {
|
2020-11-20 12:41:17 +01:00
|
|
|
cy.contains(route).should("exist")
|
2020-06-24 17:20:58 +02:00
|
|
|
})
|
|
|
|
})
|