diff --git a/apps/demos/testing/etalons/Chat-Customization (material.blue.light)_mask.png b/apps/demos/testing/etalons/Chat-Customization (material.blue.light)_mask.png deleted file mode 100644 index 0cb11d76e99b..000000000000 Binary files a/apps/demos/testing/etalons/Chat-Customization (material.blue.light)_mask.png and /dev/null differ diff --git a/apps/demos/testing/etalons/Chat-MessageEditing (fluent.blue.light)_mask.png b/apps/demos/testing/etalons/Chat-MessageEditing (fluent.blue.light)_mask.png deleted file mode 100644 index 75f57c0c716a..000000000000 Binary files a/apps/demos/testing/etalons/Chat-MessageEditing (fluent.blue.light)_mask.png and /dev/null differ diff --git a/apps/demos/utils/visual-tests/testcafe-runner.ts b/apps/demos/utils/visual-tests/testcafe-runner.ts index b16313c49448..acc415194b90 100644 --- a/apps/demos/utils/visual-tests/testcafe-runner.ts +++ b/apps/demos/utils/visual-tests/testcafe-runner.ts @@ -111,6 +111,8 @@ async function main() { } window.getSelection()?.removeAllRanges(); }).with({ boundTestRun: t })(); + + await t.hover('html', { offsetX: 1, offsetY: 1 }); }, }, }, diff --git a/e2e/testcafe-devextreme/runner.ts b/e2e/testcafe-devextreme/runner.ts index a738c017c205..58c5ed323f42 100644 --- a/e2e/testcafe-devextreme/runner.ts +++ b/e2e/testcafe-devextreme/runner.ts @@ -272,7 +272,7 @@ async function main() { window.getSelection()?.removeAllRanges(); }).with({ boundTestRun: t })(); - await t.hover('html'); + await t.hover('html', { offsetX: 1, offsetY: 1 }); const [width, height] = meta?.browserSize || DEFAULT_BROWSER_SIZE; await t.resizeWindow(width, height);