From e810969a2535ff151f39f20a76cda4e9bde0aa5a Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 23 Aug 2026 11:59:38 +0100 Subject: [PATCH] Synchronize TrueNAS storage drawer search Target the hydrated search combobox and require it to be visible before filling it, keeping the disk-history journey aligned with the rendered control. Contract-Neutral: true --- .../tests/27-truenas-storage-disk-history.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/tests/27-truenas-storage-disk-history.spec.ts b/tests/integration/tests/27-truenas-storage-disk-history.spec.ts index 12af049e0..6d5bed05f 100644 --- a/tests/integration/tests/27-truenas-storage-disk-history.spec.ts +++ b/tests/integration/tests/27-truenas-storage-disk-history.spec.ts @@ -57,9 +57,9 @@ test.describe('TrueNAS storage disk history', () => { }); await page.goto('/truenas/storage', { waitUntil: 'domcontentloaded' }); - await page - .getByRole('textbox', { name: /Search TrueNAS/ }) - .fill('sdc'); + const search = page.getByRole('combobox', { name: /Search TrueNAS/ }); + await expect(search).toBeVisible(); + await search.fill('sdc'); const diskRow = page.locator('tr').filter({ hasText: 'sdc' }).first(); await expect(diskRow).toBeVisible();