We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e972340 commit 612500aCopy full SHA for 612500a
browser_tests/tests/dialog.spec.ts
@@ -360,10 +360,10 @@ test.describe('Signin dialog', () => {
360
window['app'].extensionManager.dialog.showSignInDialog()
361
})
362
363
- const emailInput = comfyPage.page.locator('#comfy-org-sign-in-password')
364
- await emailInput.waitFor({ state: 'visible' })
365
- await emailInput.press('Control+v')
366
- await expect(emailInput).toHaveValue('test_password')
+ const input = comfyPage.page.locator('#comfy-org-sign-in-password')
+ await input.waitFor({ state: 'visible' })
+ await input.press('Control+v')
+ await expect(input).toHaveValue('test_password')
367
368
expect(await comfyPage.getNodes()).toHaveLength(nodeNum)
369
0 commit comments