@digital-ai/devops-page-object-release 0.0.54 → 0.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -710,6 +710,9 @@ declare class Phase extends WithPage {
710
710
  isMenuItemDisabled(menuName: string, taskTitle: string, group?: boolean): Promise<void>;
711
711
  expectMenuItemIsNotVisible(menuName: string, taskTitle: string): Promise<void>;
712
712
  expectMenuItemIsVisible(menuName: string, taskTitle: string): Promise<void>;
713
+ expectSubmenuItemIsVisible(parentMenuItem: string, menuName: string, taskTitle: string): Promise<void>;
714
+ clickSubmenuItemForTask(parentMenuItem: string, menuName: string, taskTitle: string): Promise<void>;
715
+ expectSnackbarSuccessMessage(message: string): Promise<void>;
713
716
  closeContextMenu(): Promise<void>;
714
717
  expectTaskBorderWithColor(taskName: string, color: string): Promise<void>;
715
718
  addTaskInPhase(taskTitle: string, taskGroup: string, taskType: string): Promise<void>;