From 70593b8d415d8858123a3df4eb148ce686611c26 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Tue, 23 May 2023 20:13:14 -0400 Subject: [PATCH] 20031: Fix move to separate collection test, requires selecting multiple files Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- cypress/integration/collection.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index c53ff392..4d3f95e2 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -990,7 +990,7 @@ describe('Collection panel tests', function () { cy.goToPath(`/collections/${sourceCollection.uuid}`); cy.get('[data-cy=collection-files-panel]').within(() => { - cy.get('input[type=checkbox]').first().click(); + cy.get('input[type=checkbox]').click({multiple: true}); }); cy.get('[data-cy=collection-files-panel-options-btn]').click(); @@ -1094,7 +1094,7 @@ describe('Collection panel tests', function () { cy.goToPath(`/collections/${sourceCollection.uuid}`); cy.get('[data-cy=collection-files-panel]').within(() => { - cy.get('input[type=checkbox]').first().click(); + cy.get('input[type=checkbox]').click({multiple: true}); }); cy.get('[data-cy=collection-files-panel-options-btn]').click(); -- 2.30.2