Cypress: Smoke: autoScreensUI

Updating createDatasourceScreen command to assist with timing issues against the smoke CI run
- Only occurs on the smoke build, passes locally
This commit is contained in:
Mitch-Budibase 2022-09-07 09:50:02 +01:00
parent ce2a52effe
commit d92f161f11
1 changed files with 2 additions and 0 deletions

View File

@ -639,7 +639,9 @@ Cypress.Commands.add(
cy.get(".spectrum-Button").contains("Add screen").click({ force: true }) cy.get(".spectrum-Button").contains("Add screen").click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get("[data-cy='autogenerated-screens']").click() cy.get("[data-cy='autogenerated-screens']").click()
cy.intercept("**/api/datasources").as("autoScreens")
cy.get(".spectrum-Button").contains("Continue").click({ force: true }) cy.get(".spectrum-Button").contains("Continue").click({ force: true })
cy.wait("@autoScreens")
}) })
cy.get("[data-cy='autogenerated-screens']").should("not.exist") cy.get("[data-cy='autogenerated-screens']").should("not.exist")
cy.get("[data-cy='data-source-modal']", { timeout: 10000 }).within(() => { cy.get("[data-cy='data-source-modal']", { timeout: 10000 }).within(() => {