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 63040d1 commit e54faa1Copy full SHA for e54faa1
browser_tests/ComfyPage.ts
@@ -315,6 +315,9 @@ export class ComfyPage {
315
safeSpot = safeSpot || { x: 10, y: 10 }
316
await this.page.mouse.move(safeSpot.x, safeSpot.y)
317
await this.page.mouse.down()
318
+ // TEMPORARY HACK: Multiple pans open the search menu, so cheat and keep it closed.
319
+ // TODO: Fix that (double-click at not-the-same-coordinations should not open the menu)
320
+ await this.page.keyboard.press('Escape')
321
await this.page.mouse.move(offset.x + safeSpot.x, offset.y + safeSpot.y)
322
await this.page.mouse.up()
323
await this.nextFrame()
0 commit comments