diff --git a/browser_tests/fixtures/ComfyPage.ts b/browser_tests/fixtures/ComfyPage.ts index 2f5965900..207305a24 100644 --- a/browser_tests/fixtures/ComfyPage.ts +++ b/browser_tests/fixtures/ComfyPage.ts @@ -885,10 +885,10 @@ export class ComfyPage { } export const comfyPageFixture = base.extend<{ comfyPage: ComfyPage }>({ - comfyPage: async ({ page, request }, use) => { + comfyPage: async ({ page, request }, use, testInfo) => { const comfyPage = new ComfyPage(page, request) - const { parallelIndex } = comfyPageFixture.info() + const { parallelIndex } = testInfo const username = `playwright-test-${parallelIndex}` const userId = await comfyPage.setupUser(username) comfyPage.userIds[parallelIndex] = userId