File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -92,9 +92,18 @@ describe('Nuxt print test', () => {
9292 } )
9393
9494 it ( 'for picasso' , ( ) => {
95+ if ( Cypress . browser . name === 'firefox' ) {
96+ console . log (
97+ "This test doesn't test browser specific behaviour. Firefox makes problems, thus we dont test this with firefox."
98+ )
99+ return
100+ }
101+
95102 cy . get ( 'a:contains("Programm")' ) . click ( )
96103 cy . get ( '[data-testid="campprogram-menu"]' ) . click ( )
97- cy . get ( '[role="menuitem"] :contains("PDF herunterladen (Layout #1)")' ) . click ( )
104+ cy . get ( '[role="menuitem"] :contains("PDF herunterladen (Layout #1)")' )
105+ . should ( 'be.visible' )
106+ . click ( )
98107
99108 const downloadsFolder = Cypress . config ( 'downloadsFolder' )
100109 const pdfPath = path . join ( downloadsFolder , 'Pfila-2023-Hauptlager.pdf' )
You can’t perform that action at this time.
0 commit comments