@@ -25,7 +25,7 @@ const SCHEDULER_SELECTOR = '#container';
2525 const scheduler = new Scheduler ( SCHEDULER_SELECTOR ) ;
2626 const appointmentPopup = await scheduler . openAppointmentPopup ( t , appointment , false ) ;
2727
28- await appointmentPopup . openRecurrenceForm ( t , frequency ) ;
28+ await appointmentPopup . selectRepeatValue ( t , frequency ) ;
2929
3030 await testScreenshot (
3131 t ,
@@ -60,7 +60,7 @@ test('recurrence form with icons', async (t) => {
6060
6161 const scheduler = new Scheduler ( SCHEDULER_SELECTOR ) ;
6262 const appointmentPopup = await scheduler . openAppointmentPopup ( t , appointment , true ) ;
63- await appointmentPopup . openRecurrenceSettings ( t ) ;
63+ await appointmentPopup . clickRecurrenceSettingsButton ( t ) ;
6464
6565 await testScreenshot (
6666 t ,
@@ -95,7 +95,7 @@ test('recurrence form readonly state', async (t) => {
9595
9696 const scheduler = new Scheduler ( SCHEDULER_SELECTOR ) ;
9797 const appointmentPopup = await scheduler . openAppointmentPopup ( t , appointment , false ) ;
98- await appointmentPopup . openRecurrenceSettings ( t ) ;
98+ await appointmentPopup . clickRecurrenceSettingsButton ( t ) ;
9999
100100 await testScreenshot (
101101 t ,
@@ -123,7 +123,7 @@ test.meta({ browserSize: [450, 1000] })('recurrence form on mobile screen', asyn
123123 const scheduler = new Scheduler ( SCHEDULER_SELECTOR ) ;
124124
125125 const appointmentPopup = await scheduler . openAppointmentPopup ( t , undefined , false ) ;
126- await appointmentPopup . openRecurrenceForm ( t , 'Weekly' ) ;
126+ await appointmentPopup . selectRepeatValue ( t , 'Weekly' ) ;
127127
128128 await testScreenshot (
129129 t ,
0 commit comments