diff --git a/browser_tests/copyPaste.spec.ts b/browser_tests/copyPaste.spec.ts index 759420a95..56e5db504 100644 --- a/browser_tests/copyPaste.spec.ts +++ b/browser_tests/copyPaste.spec.ts @@ -12,10 +12,10 @@ test.describe('Copy Paste', () => { }) test('Can copy and paste node with link', async ({ comfyPage }) => { - await comfyPage.clickEmptyLatentNode() + await comfyPage.clickTextEncodeNode1() await comfyPage.page.mouse.move(10, 10) await comfyPage.ctrlC() - await comfyPage.page.keyboard.press('Ctrl+Shift+V') + await comfyPage.page.keyboard.press('Control+Shift+V') await expect(comfyPage.canvas).toHaveScreenshot('copied-node-with-link.png') })