test(editor): Add canvas actions E2E tests (#6723)

* test(editor): Add canvas actions E2E tests

* test(editor): Open category items in node creator when category dropped on canvas

* test(editor): Have new position counted only once in drag

* test(editor): rename test
This commit is contained in:
Csaba Tuncsik
2023-07-24 15:38:37 +02:00
committed by GitHub
parent 540d32dee4
commit 052d82b220
5 changed files with 65 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ declare global {
grantBrowserPermissions(...permissions: string[]): void;
readClipboard(): Chainable<string>;
paste(pastePayload: string): void;
drag(selector: string, target: [number, number], options?: {abs?: true, index?: number}): void;
drag(selector: string | Cypress.Chainable<JQuery<HTMLElement>>, target: [number, number], options?: {abs?: boolean, index?: number, realMouse?: boolean}): void;
draganddrop(draggableSelector: string, droppableSelector: string): void;
}
}