From 6c42bd0ca04911ece6403af74852a1e34d483c8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kuty=C5=82a?= Date: Mon, 13 Jun 2022 21:43:26 +0200 Subject: [PATCH] 18203: Added test for multiple properties creation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła --- cypress/integration/project.spec.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index 0017e416..7371ed06 100644 --- a/cypress/integration/project.spec.js +++ b/cypress/integration/project.spec.js @@ -28,7 +28,7 @@ describe('Project tests', function() { cy.clearLocalStorage(); }); - it('creates a new project with properties', function() { + it('creates a new project with multiple properties', function() { const projName = `Test project (${Math.floor(999999 * Math.random())})`; cy.loginAs(activeUser); cy.get('[data-cy=side-panel-button]').click(); @@ -51,9 +51,26 @@ describe('Project tests', function() { cy.get('input').type('Magenta'); }); cy.root().submit(); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Pink'); + }); + cy.root().submit(); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Yellow'); + }); + cy.root().submit(); }); // Confirm proper vocabulary labels are displayed on the UI. cy.get('[data-cy=form-dialog]').should('contain', 'Color: Magenta'); + cy.get('[data-cy=form-dialog]').should('contain', 'Color: Pink'); + cy.get('[data-cy=form-dialog]').should('contain', 'Color: Yellow'); + + cy.get('[data-cy=resource-properties-form]').within(() => { + cy.get('[data-cy=property-field-key]').within(() => { + cy.get('input').focus(); + }); + cy.get('[data-cy=property-field-key]').should('not.contain', 'Color'); + }); // Create project and confirm the properties' real values. cy.get('[data-cy=form-submit-btn]').click(); -- 2.30.2