@@ -93,7 +93,7 @@ describe('Schedulers', () => {
9393 // Click scheduler-18 operation button.
9494 cy . get ( '#operation-18' ) . click ( ) ;
9595
96- cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #view-scheduler-18' ) . click ( ) ;
96+ cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #view-scheduler-18' ) . click ( { force : true } ) ;
9797
9898 // Then I see that the current page is the scheduler 18.
9999 cy . url ( ) . should ( 'include' , 'clusters/1/schedulers/18' ) ;
@@ -130,7 +130,7 @@ describe('Schedulers', () => {
130130 // It can show that the scheduler card is 10.
131131 cy . get ( '#scheduler-card' ) . children ( ) . should ( 'have.length' , 9 ) ;
132132 cy . get ( '#operation-51' ) . click ( ) ;
133- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #view-51' ) . click ( ) ;
133+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #view-51' ) . click ( { force : true } ) ;
134134
135135 // Then I see that the current page is the scheduler 51.
136136 cy . url ( ) . should ( 'include' , 'clusters/1/schedulers/51' ) ;
@@ -604,7 +604,7 @@ describe('Schedulers', () => {
604604 } ,
605605 ) ;
606606
607- cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #delete-scheduler-4' ) . click ( ) ;
607+ cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #delete-scheduler-4' ) . click ( { force : true } ) ;
608608
609609 cy . get ( '#deleteScheduler' ) . click ( ) ;
610610
@@ -632,7 +632,7 @@ describe('Schedulers', () => {
632632
633633 cy . get ( '#operation-10' ) . click ( ) ;
634634
635- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-10' ) . click ( ) ;
635+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-10' ) . click ( { force : true } ) ;
636636
637637 cy . intercept (
638638 {
@@ -670,7 +670,7 @@ describe('Schedulers', () => {
670670 cy . get ( '#scheduler-card' ) . children ( ) . should ( 'have.length' , 1 ) ;
671671
672672 cy . get ( '#operation-22' ) . click ( ) ;
673- cy . get ( '#delete-22' ) . click ( ) ;
673+ cy . get ( '#delete-22' ) . click ( { force : true } ) ;
674674
675675 cy . intercept (
676676 {
@@ -738,7 +738,7 @@ describe('Schedulers', () => {
738738 cy . get ( '#card-hostname-scheduler-51' ) . should ( 'be.visible' ) . and ( 'contain' , 'scheduler-51' ) ;
739739
740740 cy . get ( '#operation-51' ) . click ( ) ;
741- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-51' ) . click ( ) ;
741+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-51' ) . click ( { force : true } ) ;
742742 cy . get ( '#deleteScheduler' ) . click ( ) ;
743743 cy . wait ( '@delete' ) ;
744744
@@ -763,7 +763,7 @@ describe('Schedulers', () => {
763763 cy . get ( '#hostname-scheduler-51' ) . should ( 'be.visible' ) . and ( 'contain' , 'scheduler-51' ) ;
764764
765765 cy . get ( '#operation-51' ) . click ( ) ;
766- cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #delete-scheduler-51' ) . click ( ) ;
766+ cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #delete-scheduler-51' ) . click ( { force : true } ) ;
767767
768768 cy . get ( '#deleteScheduler' ) . click ( ) ;
769769
@@ -776,7 +776,7 @@ describe('Schedulers', () => {
776776
777777 cy . get ( '#operation-51' ) . click ( ) ;
778778
779- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-51' ) . click ( ) ;
779+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #delete-51' ) . click ( { force : true } ) ;
780780
781781 cy . get ( '#deleteScheduler' ) . click ( ) ;
782782
@@ -1042,23 +1042,23 @@ describe('Schedulers', () => {
10421042 cy . get ( '#operation-7' ) . click ( ) ;
10431043
10441044 // Display the edit features dialog.
1045- cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #edit-scheduler-7' ) . click ( ) ;
1045+ cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #edit-scheduler-7' ) . click ( { force : true } ) ;
10461046
10471047 cy . get ( '#close-delete-icon' ) . click ( ) ;
10481048 cy . get ( '#operation-7' ) . click ( ) ;
10491049
10501050 // Display the edit features dialog.
1051- cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #edit-scheduler-7' ) . click ( ) ;
1051+ cy . get ( ':nth-child(12) > .MuiPaper-root > .MuiList-root > #edit-scheduler-7' ) . click ( { force : true } ) ;
10521052
10531053 // Check that the Schedule checkbox.
10541054 cy . get ( '#Schedule-Checkbox' ) . should ( 'have.prop' , 'checked' , true ) ;
10551055
10561056 // Check that the Preheat checkbox.
10571057 cy . get ( '#Preheat-Checkbox' ) . should ( 'have.prop' , 'checked' , false ) ;
10581058
1059- cy . get ( '#Schedule-Checkbox' ) . click ( ) ;
1059+ cy . get ( '#Schedule-Checkbox' ) . click ( { force : true } ) ;
10601060
1061- cy . get ( '#Preheat-Checkbox' ) . click ( ) ;
1061+ cy . get ( '#Preheat-Checkbox' ) . click ( { force : true } ) ;
10621062
10631063 cy . intercept ( { method : 'PATCH' , url : '/api/v1/schedulers/7' } , ( req ) => {
10641064 ( req . body = '' ) ,
@@ -1099,17 +1099,17 @@ describe('Schedulers', () => {
10991099 cy . get ( '#operation-7' ) . click ( ) ;
11001100
11011101 // Display the edit features dialog.
1102- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( ) ;
1102+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( { force : true } ) ;
11031103
11041104 // Check that the Schedule checkbox.
11051105 cy . get ( '#Schedule-Checkbox' ) . should ( 'have.prop' , 'checked' , true ) ;
11061106
11071107 // Check that the Preheat checkbox.
11081108 cy . get ( '#Preheat-Checkbox' ) . should ( 'have.prop' , 'checked' , false ) ;
11091109
1110- cy . get ( '#Schedule-Checkbox' ) . click ( ) ;
1110+ cy . get ( '#Schedule-Checkbox' ) . click ( { force : true } ) ;
11111111
1112- cy . get ( '#Preheat-Checkbox' ) . click ( ) ;
1112+ cy . get ( '#Preheat-Checkbox' ) . click ( { force : true } ) ;
11131113
11141114 cy . intercept ( { method : 'PATCH' , url : '/api/v1/schedulers/7' } , ( req ) => {
11151115 ( req . body = '' ) ,
@@ -1152,7 +1152,7 @@ describe('Schedulers', () => {
11521152 cy . get ( '#operation-7' ) . click ( ) ;
11531153
11541154 // Display the edit features dialog.
1155- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( ) ;
1155+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( { force : true } ) ;
11561156
11571157 // Check that the Schedule checkbox.
11581158 cy . get ( '#Schedule-Checkbox' ) . should ( 'have.prop' , 'checked' , true ) ;
@@ -1161,7 +1161,7 @@ describe('Schedulers', () => {
11611161 cy . get ( '#Preheat-Checkbox' ) . should ( 'have.prop' , 'checked' , false ) ;
11621162
11631163 // Check all checkboxes.
1164- cy . get ( '[type="checkbox"]' ) . check ( ) ;
1164+ cy . get ( '[type="checkbox"]' ) . check ( { force : true } ) ;
11651165 cy . intercept ( { method : 'PATCH' , url : '/api/v1/schedulers/7' } , ( req ) => {
11661166 ( req . body = '' ) ,
11671167 req . reply ( {
@@ -1184,7 +1184,7 @@ describe('Schedulers', () => {
11841184 cy . get ( '#operation-7' ) . click ( ) ;
11851185
11861186 // Display the edit features dialog.
1187- cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( ) ;
1187+ cy . get ( ':nth-child(11) > .MuiPaper-root > .MuiList-root > #edit-7' ) . click ( { force : true } ) ;
11881188
11891189 // Check that the Schedule checkbox.
11901190 cy . get ( '#Schedule-Checkbox' ) . should ( 'have.prop' , 'checked' , true ) ;
@@ -1193,7 +1193,7 @@ describe('Schedulers', () => {
11931193 cy . get ( '#Preheat-Checkbox' ) . should ( 'have.prop' , 'checked' , false ) ;
11941194
11951195 // Check all checkboxes.
1196- cy . get ( '[type="checkbox"]' ) . check ( ) ;
1196+ cy . get ( '[type="checkbox"]' ) . check ( { force : true } ) ;
11971197 cy . intercept ( { method : 'PATCH' , url : '/api/v1/schedulers/7' } , ( req ) => {
11981198 ( req . body = '' ) ,
11991199 req . reply ( {
0 commit comments