Skip to content

Commit b6b6d38

Browse files
authored
Scheduler: a11y recurrence editor, fix css (swueyOAh) (DevExpress#29728)
Co-authored-by: Vladimir Bushmanov <[email protected]>
1 parent a6910f3 commit b6b6d38

File tree

68 files changed

+255
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+255
-240
lines changed
-1.22 KB
Loading
647 Bytes
Loading
-1.13 KB
Loading

e2e/testcafe-devextreme/tests/scheduler/common/appointmentForm/expressions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ test(
566566

567567
await takeScreenshot(
568568
'form_recurrence-editor-first-opening_nested-expr.png',
569-
scheduler.appointmentPopup.form,
569+
scheduler.appointmentPopup.content,
570570
);
571571

572572
await t.expect(compareResults.isValid())

e2e/testcafe-devextreme/tests/scheduler/common/appointmentForm/recurrenceEditor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test('Should not reset the recurrence editor value after the repeat toggling', a
2929
await t.click(popup.recurrenceElement);
3030
await t.click(popup.recurrenceElement);
3131

32-
await takeScreenshot('recurrence-editor_after-hide.png', popup.form);
32+
await takeScreenshot('recurrence-editor_after-hide.png', popup.content);
3333

3434
await t.expect(compareResults.isValid())
3535
.ok(compareResults.errorMessages());
@@ -55,7 +55,7 @@ test('Should reset the recurrence editor value after the popup reopening', async
5555
await t.doubleClick(cell);
5656
await t.click(popup.recurrenceElement);
5757

58-
await takeScreenshot('recurrence-editor_after-popup-reopen.png', popup.form);
58+
await takeScreenshot('recurrence-editor_after-popup-reopen.png', popup.content);
5959

6060
await t.expect(compareResults.isValid())
6161
.ok(compareResults.errorMessages());

e2e/testcafe-devextreme/tests/scheduler/common/layout/appointmentForm/allDay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ test('StartDate and endDate should have correct type after "allDay" and "repeat"
108108

109109
await t
110110
.doubleClick(scheduler.getDateTableCell(0, 0))
111-
.expect(await takeScreenshot('form-before-change-allday-and-reccurence-options.png'))
111+
.expect(await takeScreenshot('form-before-change-allday-and-reccurence-options.png', appointmentPopup.content))
112112
.ok()
113113

114114
.click(appointmentPopup.allDayElement)
115115
.click(appointmentPopup.recurrenceElement)
116116

117-
.expect(await takeScreenshot('form-after-change-allday-and-reccurence-options.png'))
117+
.expect(await takeScreenshot('form-after-change-allday-and-reccurence-options.png', appointmentPopup.content))
118118
.ok()
119119

120120
.expect(compareResults.isValid())

e2e/testcafe-devextreme/tests/scheduler/common/layout/appointmentForm/common.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ fixture`AppointmentForm screenshot tests`
1616

1717
await t
1818
.doubleClick(scheduler.getDateTableCell(0, 0))
19-
.expect(await takeScreenshot(`initial-form_${theme}.png`, scheduler.appointmentPopup.wrapper))
19+
.expect(await takeScreenshot(`initial-form_${theme}.png`, scheduler.appointmentPopup.content))
2020
.ok()
2121

2222
.click(appointmentPopup.allDayElement)
2323
.click(appointmentPopup.recurrenceElement)
2424

25-
.expect(await takeScreenshot(`allday-and-reccurence-form_${theme}.png`, scheduler.appointmentPopup.wrapper))
25+
.expect(await takeScreenshot(`allday-and-reccurence-form_${theme}.png`, scheduler.appointmentPopup.content))
2626
.ok()
2727

2828
.expect(compareResults.isValid())
-45.6 KB
Loading

0 commit comments

Comments
 (0)