From 627dc349dc50c139a375e59f86e452c141945477 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 10 Apr 2024 16:33:13 -0400 Subject: [PATCH] close all snackbar notices since they overlap the input element we want to click --- tests/cypress/integration/staging-prod.cy.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/cypress/integration/staging-prod.cy.js b/tests/cypress/integration/staging-prod.cy.js index 2f784bb..188486d 100644 --- a/tests/cypress/integration/staging-prod.cy.js +++ b/tests/cypress/integration/staging-prod.cy.js @@ -202,6 +202,11 @@ describe( 'Staging Page - Production Environment', function () { } ).as( 'stagingSwitch' ); + // close all snackbar notices + cy.get( '.nfd-notification button' ).each( ( $btn ) => { + cy.wrap( $btn ).click(); + }); + cy.get( '#newfold-production-toggle' ).should( 'be.checked' ); cy.get( '#newfold-staging-toggle' ).should( 'not.be.checked' ); cy.get( '#newfold-staging-toggle' ).click();