From a9fd8d81809b14d4785d9d051becdf7912cf2f88 Mon Sep 17 00:00:00 2001 From: Naseem Ali <34807727+Naseem77@users.noreply.github.com> Date: Sun, 16 Feb 2025 16:20:27 +0200 Subject: [PATCH] Update codeGraph.ts --- e2e/logic/POM/codeGraph.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/e2e/logic/POM/codeGraph.ts b/e2e/logic/POM/codeGraph.ts index 7cc9ccd7..82eec80a 100644 --- a/e2e/logic/POM/codeGraph.ts +++ b/e2e/logic/POM/codeGraph.ts @@ -476,14 +476,6 @@ export default class CodeGraph extends BasePage { throw new Error("Tooltip not visible after multiple attempts!"); } - - async nodeClicktest(x: number, y: number): Promise { - console.log(`Clicking node at (${x}, ${y})`); - await this.page.waitForTimeout(500); - await this.canvasElement.hover({ position: { x, y } }); - await this.canvasElement.click({ position: { x, y }, button: 'right' }); - await this.page.waitForTimeout(5000); - } async selectCodeGraphCheckbox(checkbox: string): Promise { await this.codeGraphCheckbox(checkbox).click();