Skip to content

Commit

Permalink
Revert "[RFR] Test of Add 'ActionsColumn to Job Functions table #2101'"
Browse files Browse the repository at this point in the history
Signed-off-by: Maayan Hadasi <mguetta@redhat.com>
  • Loading branch information
mguetta1 committed Nov 5, 2024
1 parent b4c734e commit d5b250d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cypress/e2e/models/migration/controls/jobfunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ import {
cancelForm,
performRowAction,
selectUserPerspective,
performRowActionByIcon,
clickItemInKebabMenu,
} from "../../../../utils/utils";
import * as commonView from "../../../views/common.view";

Expand Down Expand Up @@ -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();
Expand All @@ -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 {
Expand Down

0 comments on commit d5b250d

Please sign in to comment.