We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055a1ce commit 01a38ebCopy full SHA for 01a38eb
packages/devextreme-cli/testing/app-template.test.shared.js
@@ -91,8 +91,10 @@ module.exports = (env) => {
91
await page.click('.dx-button.theme-button');
92
await page.waitForTimeout(500);
93
94
- // eslint-disable-next-line no-undef
95
- document.querySelector('.dx-button.theme-button').blur();
+ await page.evaluate(() => {
+ // eslint-disable-next-line no-undef
96
+ document.querySelector('.dx-button.theme-button').blur();
97
+ });
98
99
const image = await takeScreenshot();
100
0 commit comments