From 8df0663a925d31dffb4e39f50bbc744c06838ab8 Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 20 May 2026 04:38:12 +0000 Subject: [PATCH] test: select retry trace fixture task --- scripts/src/e2e.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/src/e2e.ts b/scripts/src/e2e.ts index 14ac9aad..69b00721 100644 --- a/scripts/src/e2e.ts +++ b/scripts/src/e2e.ts @@ -1192,6 +1192,7 @@ async function runCodeQueueRetryTraceFixture(page: Page, frontendUrl: string): P await page.goto(`${frontendUrl}/app/code-queue/`, { waitUntil: "domcontentloaded", timeout: 15000 }); await page.waitForSelector('[data-testid="code-queue-page"]', { timeout: 15000 }); await page.waitForSelector(`[data-testid="codex-task-${taskId}"]`, { timeout: 15000 }); + await page.locator(`[data-testid="codex-task-${taskId}"]`).click(); await page.waitForSelector('[data-testid="codex-execution-summary-current"]', { timeout: 15000 }); await page.waitForFunction(() => { const current = document.querySelector('[data-testid="codex-execution-summary-current"]') as HTMLDetailsElement | null;