Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('Subject text editor should have focus after returning from recurrence form
const scheduler = new Scheduler(SCHEDULER_SELECTOR);
const appointmentPopup = await scheduler.openAppointmentPopup(t, appointment, true);

await appointmentPopup.openRecurrenceSettings(t);
await appointmentPopup.clickRecurrenceSettingsButton(t);

await t.click(appointmentPopup.recurrence.backButton);

Expand Down Expand Up @@ -47,7 +47,7 @@ test('Recurrence start date editor should have focus after opening recurrence se
const scheduler = new Scheduler(SCHEDULER_SELECTOR);
const appointmentPopup = await scheduler.openAppointmentPopup(t, appointment, true);

await appointmentPopup.openRecurrenceSettings(t);
await appointmentPopup.clickRecurrenceSettingsButton(t);

await t
.expect(appointmentPopup.recurrence.startDateInput.focused)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const SCHEDULER_SELECTOR = '#container';
const scheduler = new Scheduler(SCHEDULER_SELECTOR);
const appointmentPopup = await scheduler.openAppointmentPopup(t, appointment, false);

await appointmentPopup.openRecurrenceForm(t, frequency);
await appointmentPopup.selectRepeatValue(t, frequency);

await testScreenshot(
t,
Expand Down Expand Up @@ -60,7 +60,7 @@ test('recurrence form with icons', async (t) => {

const scheduler = new Scheduler(SCHEDULER_SELECTOR);
const appointmentPopup = await scheduler.openAppointmentPopup(t, appointment, true);
await appointmentPopup.openRecurrenceSettings(t);
await appointmentPopup.clickRecurrenceSettingsButton(t);

await testScreenshot(
t,
Expand Down Expand Up @@ -95,7 +95,7 @@ test('recurrence form readonly state', async (t) => {

const scheduler = new Scheduler(SCHEDULER_SELECTOR);
const appointmentPopup = await scheduler.openAppointmentPopup(t, appointment, false);
await appointmentPopup.openRecurrenceSettings(t);
await appointmentPopup.clickRecurrenceSettingsButton(t);

await testScreenshot(
t,
Expand Down Expand Up @@ -123,7 +123,7 @@ test.meta({ browserSize: [450, 1000] })('recurrence form on mobile screen', asyn
const scheduler = new Scheduler(SCHEDULER_SELECTOR);

const appointmentPopup = await scheduler.openAppointmentPopup(t, undefined, false);
await appointmentPopup.openRecurrenceForm(t, 'Weekly');
await appointmentPopup.selectRepeatValue(t, 'Weekly');

await testScreenshot(
t,
Expand Down
Loading
Loading