Browse Source
Merge pull request #6596 from Budibase/cypress-testing
Cypress: User Details Test Fix
pull/6601/head
Mitch-Budibase
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
packages/builder/cypress/integration/adminAndManagement/userManagement.spec.js
|
|
|
@ -176,12 +176,12 @@ filterTests(["smoke", "all"], () => { |
|
|
|
// Add First name
|
|
|
|
cy.get(interact.FIELD, { timeout: 1000 }).eq(2).within(() => { |
|
|
|
cy.wait(500) |
|
|
|
cy.get(interact.SPECTRUM_TEXTFIELD_INPUT, { timeout: 1000 }).click().type("bb") |
|
|
|
cy.get(interact.SPECTRUM_TEXTFIELD_INPUT, { timeout: 1000 }).wait(500).clear().click().type("bb") |
|
|
|
}) |
|
|
|
// Add Last name
|
|
|
|
cy.get(interact.FIELD, { timeout: 1000 }).eq(3).within(() => { |
|
|
|
cy.wait(500) |
|
|
|
cy.get(interact.SPECTRUM_TEXTFIELD_INPUT, { timeout: 1000 }).click().type("test") |
|
|
|
cy.get(interact.SPECTRUM_TEXTFIELD_INPUT, { timeout: 1000 }).click().wait(500).clear().type("test") |
|
|
|
}) |
|
|
|
cy.get(interact.FIELD, { timeout: 1000 }).eq(0).click() |
|
|
|
// Reload page
|
|
|
|
|