From 49d7fa17354f895203ab57588478ccd4a0ac6331 Mon Sep 17 00:00:00 2001 From: Jin <22962980+JYC333@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:01:08 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Fix=20playwright=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- e2e/support/app.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e/support/app.ts b/e2e/support/app.ts index 64e60d74e..55f36a7ff 100644 --- a/e2e/support/app.ts +++ b/e2e/support/app.ts @@ -75,6 +75,8 @@ export default class App { */ async closeAllTabs() { await this.triggerCommand("closeAllTabs"); + // Page in Playwright is not updated somehow, need to click on the tab to make sure it's rendered + await this.getTab(0).click(); } /**