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;