mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
## Summary - Add e2e test covering node copy/paste (Ctrl+C/V), image paste onto a selected LoadImage node, and image paste on empty canvas creating a new LoadImage node - Extract `simulateImagePaste` into reusable `ClipboardHelper.pasteFile()` with auto-detected filename and MIME type - Add test workflow asset `load_image_with_ksampler.json` and `image32x32.webp` image asset ## Test plan - [ ] `pnpm typecheck:browser` passes - [ ] `pnpm exec eslint browser_tests/tests/copyPaste.spec.ts` passes - [ ] New test passes in CI: `Copy paste node, image paste onto LoadImage, image paste on empty canvas` - [ ] Existing copy/paste tests unaffected ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10233-test-add-copy-paste-node-and-image-paste-e2e-tests-3276d73d365081e78bb9f3f1bf34389f) by [Unito](https://www.unito.io)
203 lines
6.8 KiB
TypeScript
203 lines
6.8 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../fixtures/ComfyPage'
|
|
import { DefaultGraphPositions } from '../fixtures/constants/defaultGraphPositions'
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Disabled')
|
|
})
|
|
|
|
test.describe('Copy Paste', { tag: ['@screenshot', '@workflow'] }, () => {
|
|
test('Can copy and paste node', async ({ comfyPage }) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.emptyLatentWidgetClick
|
|
})
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.clipboard.paste()
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-node.png')
|
|
})
|
|
|
|
test('Can copy and paste node with link', async ({ comfyPage }) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.textEncodeNode1
|
|
})
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.page.keyboard.press('Control+Shift+V')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-node-with-link.png')
|
|
})
|
|
|
|
test('Can copy and paste text', async ({ comfyPage }) => {
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
const originalString = await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
const resultString = await textBox.inputValue()
|
|
expect(resultString).toBe(originalString + originalString)
|
|
})
|
|
|
|
test('Can copy and paste widget value', async ({ comfyPage }) => {
|
|
// Copy width value (512) from empty latent node to KSampler's seed.
|
|
// KSampler's seed
|
|
await comfyPage.canvas.click({
|
|
position: {
|
|
x: 1005,
|
|
y: 281
|
|
}
|
|
})
|
|
await comfyPage.clipboard.copy(null)
|
|
// Empty latent node's width
|
|
await comfyPage.canvas.click({
|
|
position: {
|
|
x: 718,
|
|
y: 643
|
|
}
|
|
})
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.page.keyboard.press('Enter')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-widget-value.png')
|
|
})
|
|
|
|
/**
|
|
* https://github.com/Comfy-Org/ComfyUI_frontend/issues/98
|
|
*/
|
|
test('Paste in text area with node previously copied', async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.emptyLatentWidgetClick
|
|
})
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.copy(null)
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
'paste-in-text-area-with-node-previously-copied.png'
|
|
)
|
|
})
|
|
|
|
test('Copy text area does not copy node', async ({ comfyPage }) => {
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
// Unfocus textbox.
|
|
await comfyPage.page.mouse.click(10, 10)
|
|
await comfyPage.clipboard.paste(null)
|
|
await expect(comfyPage.canvas).toHaveScreenshot('no-node-copied.png')
|
|
})
|
|
|
|
test('Copy node by dragging + alt', async ({ comfyPage }) => {
|
|
// TextEncodeNode1
|
|
await comfyPage.page.mouse.move(618, 191)
|
|
await comfyPage.page.keyboard.down('Alt')
|
|
await comfyPage.page.mouse.down()
|
|
await comfyPage.page.mouse.move(100, 100)
|
|
await comfyPage.page.mouse.up()
|
|
await comfyPage.page.keyboard.up('Alt')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('drag-copy-copied-node.png')
|
|
})
|
|
|
|
test('Can undo paste multiple nodes as single action', async ({
|
|
comfyPage
|
|
}) => {
|
|
const initialCount = await comfyPage.nodeOps.getGraphNodesCount()
|
|
expect(initialCount).toBeGreaterThan(1)
|
|
await comfyPage.canvas.click()
|
|
await comfyPage.keyboard.selectAll()
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.clipboard.paste()
|
|
|
|
const pasteCount = await comfyPage.nodeOps.getGraphNodesCount()
|
|
expect(pasteCount).toBe(initialCount * 2)
|
|
|
|
await comfyPage.keyboard.undo()
|
|
const undoCount = await comfyPage.nodeOps.getGraphNodesCount()
|
|
expect(undoCount).toBe(initialCount)
|
|
})
|
|
|
|
test(
|
|
'Copy paste node, image paste onto LoadImage, image paste on empty canvas',
|
|
{ tag: ['@node'] },
|
|
async ({ comfyPage }) => {
|
|
await comfyPage.workflow.loadWorkflow('nodes/load_image_with_ksampler')
|
|
expect(await comfyPage.nodeOps.getGraphNodesCount()).toBe(2)
|
|
|
|
// Step 1: Copy a KSampler node with Ctrl+C and paste with Ctrl+V
|
|
const ksamplerNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('KSampler')
|
|
await ksamplerNodes[0].copy()
|
|
await comfyPage.canvas.click({ position: { x: 50, y: 500 } })
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.paste()
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount(), {
|
|
timeout: 5_000
|
|
})
|
|
.toBe(3)
|
|
|
|
// Step 2: Paste image onto selected LoadImage node
|
|
const loadImageNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('LoadImage')
|
|
await loadImageNodes[0].click('title')
|
|
await comfyPage.nextFrame()
|
|
|
|
const uploadPromise = comfyPage.page.waitForResponse(
|
|
(resp) => resp.url().includes('/upload/') && resp.status() === 200,
|
|
{ timeout: 10_000 }
|
|
)
|
|
await comfyPage.clipboard.pasteFile(
|
|
comfyPage.assetPath('image32x32.webp')
|
|
)
|
|
await uploadPromise
|
|
|
|
await expect
|
|
.poll(
|
|
async () => {
|
|
const fileWidget = await loadImageNodes[0].getWidget(0)
|
|
return fileWidget.getValue()
|
|
},
|
|
{ timeout: 5_000 }
|
|
)
|
|
.toContain('image32x32')
|
|
expect(await comfyPage.nodeOps.getGraphNodesCount()).toBe(3)
|
|
|
|
// Step 3: Click empty canvas area, paste image → creates new LoadImage
|
|
await comfyPage.canvas.click({ position: { x: 50, y: 500 } })
|
|
await comfyPage.nextFrame()
|
|
|
|
const uploadPromise2 = comfyPage.page.waitForResponse(
|
|
(resp) => resp.url().includes('/upload/') && resp.status() === 200,
|
|
{ timeout: 10_000 }
|
|
)
|
|
await comfyPage.clipboard.pasteFile(
|
|
comfyPage.assetPath('image32x32.webp')
|
|
)
|
|
await uploadPromise2
|
|
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount(), {
|
|
timeout: 5_000
|
|
})
|
|
.toBe(4)
|
|
const allLoadImageNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('LoadImage')
|
|
expect(allLoadImageNodes).toHaveLength(2)
|
|
}
|
|
)
|
|
})
|