From 395f4bef311bc45e704f1bb876be7c10007682cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Tue, 7 Apr 2026 22:21:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=86=92=E7=83=9F?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=94=A8=E6=88=B7=E8=8F=9C=E5=8D=95=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=99=A8=EF=BC=88=E4=BB=BB=E5=8A=A1=206/8=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- novalon-manage-web/e2e/smoke/login-logout.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/novalon-manage-web/e2e/smoke/login-logout.spec.ts b/novalon-manage-web/e2e/smoke/login-logout.spec.ts index e1d9833..0cd0088 100644 --- a/novalon-manage-web/e2e/smoke/login-logout.spec.ts +++ b/novalon-manage-web/e2e/smoke/login-logout.spec.ts @@ -22,7 +22,8 @@ test.describe('冒烟测试 - 基础流程', () => { }); await test.step('点击用户菜单', async () => { - await page.click('[data-testid="user-menu"]'); + const avatarButton = page.locator('.el-avatar').first(); + await avatarButton.click(); await page.waitForTimeout(500); });