Skip to content

Commit

Permalink
changed notification closing logic
Browse files Browse the repository at this point in the history
  • Loading branch information
klakhov committed Sep 23, 2024
1 parent d452fcd commit 5abf1a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/cypress/e2e/features/requests_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ context('Requests page', () => {
cy.getJobIDFromIdx(0).then((jobID) => {
const closeExportNotification = () => {
cy.contains('Export is finished').should('be.visible');
cy.closeNotification('.ant-notification-notice-info');
cy.contains('Export is finished').parents('.ant-notification-notice')
.find('span[aria-label="close"]').click();
};

const exportParams = {
Expand Down

0 comments on commit 5abf1a4

Please sign in to comment.