diff --git a/browser_tests/ComfyPage.ts b/browser_tests/ComfyPage.ts index 93ce9355..7426b082 100644 --- a/browser_tests/ComfyPage.ts +++ b/browser_tests/ComfyPage.ts @@ -640,9 +640,10 @@ export class ComfyPage { y: 645 } }) - await page.locator('input[type="text"]').click() - await page.locator('input[type="text"]').fill('128') - await page.locator('input[type="text"]').press('Enter') + const dialogInput = page.locator('.graphdialog input[type="text"]') + await dialogInput.click() + await dialogInput.fill('128') + await dialogInput.press('Enter') await this.nextFrame() } diff --git a/src/components/appMenu/AppMenu.vue b/src/components/appMenu/AppMenu.vue index 4af2cd84..ac5c189c 100644 --- a/src/components/appMenu/AppMenu.vue +++ b/src/components/appMenu/AppMenu.vue @@ -1,6 +1,13 @@