From 6c9d8e5231ed708edfbc3e9b396f25f62e971219 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Mon, 15 Apr 2024 17:39:00 +0200 Subject: [PATCH] Fix e2e test --- playwright/e2e/crypto/crypto.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright/e2e/crypto/crypto.spec.ts b/playwright/e2e/crypto/crypto.spec.ts index 957be58711..5ea425cf3c 100644 --- a/playwright/e2e/crypto/crypto.spec.ts +++ b/playwright/e2e/crypto/crypto.spec.ts @@ -392,7 +392,7 @@ test.describe("Cryptography", function () { await bobSecondDevice.sendMessage(testRoomId, "test encrypted from unverified"); await expect(lastTile).toContainText("test encrypted from unverified"); await expect(lastTileE2eIcon).toHaveClass(/mx_EventTile_e2eIcon_warning/); - await lastTileE2eIcon.focus(); + await lastTileE2eIcon.hover(); await expect(page.getByRole("tooltip")).toContainText("Encrypted by a device not verified by its owner."); /* Should show a grey padlock for a message from an unknown device */ @@ -431,7 +431,7 @@ test.describe("Cryptography", function () { } else { await expect(lastE2eIcon).toHaveClass(/mx_EventTile_e2eIcon_normal/); } - await lastE2eIcon.focus(); + await lastE2eIcon.hover(); await expect(page.getByRole("tooltip")).toContainText("Encrypted by an unknown or deleted device."); });