From a78b12570fe055fd39565f74ce9e02f96f8260de Mon Sep 17 00:00:00 2001 From: Maayan Hadasi <60384172+mguetta1@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:41:09 +0200 Subject: [PATCH] Revert "[RFR] Test of Add 'ActionsColumn to Job Functions table #2101'" --- cypress/e2e/models/migration/controls/jobfunctions.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cypress/e2e/models/migration/controls/jobfunctions.ts b/cypress/e2e/models/migration/controls/jobfunctions.ts index 7d78306e4..0e2c6b65d 100644 --- a/cypress/e2e/models/migration/controls/jobfunctions.ts +++ b/cypress/e2e/models/migration/controls/jobfunctions.ts @@ -34,8 +34,6 @@ import { cancelForm, performRowAction, selectUserPerspective, - performRowActionByIcon, - clickItemInKebabMenu, } from "../../../../utils/utils"; import * as commonView from "../../../views/common.view"; @@ -78,7 +76,7 @@ export class Jobfunctions { Jobfunctions.openList(); selectItemsPerPage(100); cy.wait(2000); - performRowActionByIcon(this.name, commonView.pencilIcon); + performRowAction(this.name, editAction); if (cancel) { cancelForm(); @@ -93,7 +91,7 @@ export class Jobfunctions { delete(cancel = false): void { Jobfunctions.openList(); - clickItemInKebabMenu(this.name, deleteAction); + performRowAction(this.name, deleteAction); if (cancel) { click(commonView.confirmCancelButton); } else {