@digital-ai/devops-page-object-release 0.0.54 → 0.0.56
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/CHANGELOG.md +13 -0
- package/dist/main.js +54 -15
- package/dist/main.js.map +1 -1
- package/dist/module.js +54 -15
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +8 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -383,7 +383,9 @@ declare class SchedulingRail extends WithPage {
|
|
|
383
383
|
dateUtil: DateUtil;
|
|
384
384
|
constructor(page: Page);
|
|
385
385
|
expectStartDateToBeDisplayed(): Promise<void>;
|
|
386
|
-
expectStartDateToBe(date:
|
|
386
|
+
expectStartDateToBe(date: string): Promise<void>;
|
|
387
|
+
expectStartDateWarningBannerToNotBePresent(): Promise<void>;
|
|
388
|
+
expectStartDateWarningBanner(text: string, originalScheduledStartDate?: string): Promise<void>;
|
|
387
389
|
expectEndDateToBeDisplayed(): Promise<void>;
|
|
388
390
|
switchWaitForScheduledDate(): Promise<void>;
|
|
389
391
|
expectWaitForScheduledDateToBeChecked(): Promise<void>;
|
|
@@ -710,6 +712,9 @@ declare class Phase extends WithPage {
|
|
|
710
712
|
isMenuItemDisabled(menuName: string, taskTitle: string, group?: boolean): Promise<void>;
|
|
711
713
|
expectMenuItemIsNotVisible(menuName: string, taskTitle: string): Promise<void>;
|
|
712
714
|
expectMenuItemIsVisible(menuName: string, taskTitle: string): Promise<void>;
|
|
715
|
+
expectSubmenuItemIsVisible(parentMenuItem: string, menuName: string, taskTitle: string): Promise<void>;
|
|
716
|
+
clickSubmenuItemForTask(parentMenuItem: string, menuName: string, taskTitle: string): Promise<void>;
|
|
717
|
+
expectSnackbarSuccessMessage(message: string): Promise<void>;
|
|
713
718
|
closeContextMenu(): Promise<void>;
|
|
714
719
|
expectTaskBorderWithColor(taskName: string, color: string): Promise<void>;
|
|
715
720
|
addTaskInPhase(taskTitle: string, taskGroup: string, taskType: string): Promise<void>;
|
|
@@ -1310,6 +1315,7 @@ declare class TemplatePage extends WithPage {
|
|
|
1310
1315
|
triggers: TemplateTriggerPage;
|
|
1311
1316
|
util: Util;
|
|
1312
1317
|
variables: TemplateVariablesPage;
|
|
1318
|
+
plannerView: ReleaseGanttPage;
|
|
1313
1319
|
constructor(page: Page);
|
|
1314
1320
|
openTaskDrawer(taskName: string): Promise<TaskDrawer>;
|
|
1315
1321
|
openTaskDrawerFromTableView(taskName: string): Promise<TaskDrawer>;
|
|
@@ -1326,7 +1332,7 @@ declare class TemplatePage extends WithPage {
|
|
|
1326
1332
|
expectSubPage(menuItem: string, toBePresent: boolean): Promise<void>;
|
|
1327
1333
|
openFlowView(): Promise<void>;
|
|
1328
1334
|
openTableView(): Promise<void>;
|
|
1329
|
-
openPlannerView(): Promise<
|
|
1335
|
+
openPlannerView(): Promise<ReleaseGanttPage>;
|
|
1330
1336
|
openCodeView(): Promise<void>;
|
|
1331
1337
|
expandGanttFolder(): Promise<void>;
|
|
1332
1338
|
addNewPhase(phaseName?: string): Promise<void>;
|