From 7129266dd78fa7ea44c5d33c73d933021958146a Mon Sep 17 00:00:00 2001 From: root Date: Tue, 31 Mar 2026 04:44:30 +0000 Subject: [PATCH] =?UTF-8?q?test:=20fix=20settings=20E2E=20spec=20=E2=80=94?= =?UTF-8?q?=20use=20button=20selector=20for=20Tenant=20tab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- e2e/settings.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/settings.spec.ts b/e2e/settings.spec.ts index 81cd3f5..5d0d7cc 100644 --- a/e2e/settings.spec.ts +++ b/e2e/settings.spec.ts @@ -13,7 +13,8 @@ test.describe('Settings', () => { test('tenant settings section visible', async ({ page }) => { await page.waitForTimeout(2000); - await expect(page.locator('text=Tenant, text=Organization, text=ISP Name').first()).toBeVisible(); + // Tenant tab in sidebar nav + await expect(page.locator('button:has-text("Tenant"), a:has-text("Tenant")').first()).toBeVisible(); }); test('billing settings section visible', async ({ page }) => { -- 2.43.0