From 292cda8ed17aaa84670b7c8513b1ab7df5c1c5ea Mon Sep 17 00:00:00 2001 From: Dmitry Kruchinin <33020454+dvkruchinin@users.noreply.github.com> Date: Mon, 17 May 2021 23:14:50 +0300 Subject: [PATCH] Cypress. Update test "Review pipeline feature". (#3207) * Add { multiple: true } for closing cvat-notification-notice-save-annotations-failed * Add log for debug * Remove debug --- .../registration_involved/case_28_review_pipeline_feature.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/integration/actions_users/registration_involved/case_28_review_pipeline_feature.js b/tests/cypress/integration/actions_users/registration_involved/case_28_review_pipeline_feature.js index 1b2d6d6b0..10d3da40b 100644 --- a/tests/cypress/integration/actions_users/registration_involved/case_28_review_pipeline_feature.js +++ b/tests/cypress/integration/actions_users/registration_involved/case_28_review_pipeline_feature.js @@ -316,7 +316,7 @@ context('Review pipeline feature', () => { cy.get('.cvat-notification-notice-save-annotations-failed') .should('exist') .within(() => { - cy.get('[data-icon="close"]').click(); // Close the notice. + cy.get('[data-icon="close"]').click({ multiple: true }); // Close the notice. }); cy.goToTaskList(); cy.logout(thirdUserName); -- GitLab