From 1ea11df360baa13f19d07323dd33047dc206259c Mon Sep 17 00:00:00 2001 From: Aleksey Novikov Date: Tue, 9 Jan 2024 09:32:07 +0300 Subject: [PATCH] #7595 Dynamic matrix expand button has wrong focus. - reset focus in tests Fixes #7595 --- visualRegressionTests/tests/defaultV2/matrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visualRegressionTests/tests/defaultV2/matrix.ts b/visualRegressionTests/tests/defaultV2/matrix.ts index 9bc579fa54..f201478e2e 100644 --- a/visualRegressionTests/tests/defaultV2/matrix.ts +++ b/visualRegressionTests/tests/defaultV2/matrix.ts @@ -656,7 +656,7 @@ frameworks.forEach(framework => { await takeElementScreenshot("question-matrix-dropdown-detail-no-header-expanded.png", questionRoot, t, comparer); await t.click(Selector(".sd-table__cell--detail-button").filterVisible().nth(1)); - await t.hover(questionRoot, { offsetX: 1, offsetY: 1 }); + await t.click(questionRoot, { offsetX: 1, offsetY: 1 }); await takeElementScreenshot("question-matrix-dropdown-detail-no-header.png", questionRoot, t, comparer); });