@digital-ai/devops-page-object-release 0.0.28 → 0.0.29
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 +7 -0
- package/dist/main.js +76 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +76 -5
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +11 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -330,6 +330,8 @@ declare class TaskDrawer extends WithPage {
|
|
|
330
330
|
setFlag(flagName: string, flagComment: string): Promise<void>;
|
|
331
331
|
expectFlaggedWith(flagName: string, flagComment: string): Promise<void>;
|
|
332
332
|
expectStartDateToBeDisplayed(): Promise<void>;
|
|
333
|
+
expectStartDayToBeInAvatar(expectedDay: string): Promise<void>;
|
|
334
|
+
expectEndDayToBeInAvatar(expectedDay: string): Promise<void>;
|
|
333
335
|
expectEndDateToBeDisplayed(): Promise<void>;
|
|
334
336
|
expectStartDateAndEndDateToBeDisplayed(): Promise<void>;
|
|
335
337
|
expectPhaseAndTaskTitleToContain(phaseName: string, taskTitle: string): Promise<void>;
|
|
@@ -480,6 +482,8 @@ declare class ReleasePage extends WithPage {
|
|
|
480
482
|
openTriggers(): Promise<TriggersPage>;
|
|
481
483
|
abort(comment?: string): Promise<void>;
|
|
482
484
|
getPhase(phaseName: string): Phase;
|
|
485
|
+
expectPhaseCountToBe(expectedPhaseCount: number): Promise<void>;
|
|
486
|
+
expectVariableToBeFound(variableName: string): Promise<void>;
|
|
483
487
|
expectNotFlagged(): Promise<void>;
|
|
484
488
|
expectRiskFlagOnTaskCard(): Promise<void>;
|
|
485
489
|
expectFlagOnCompletedTaskCard(): Promise<void>;
|
|
@@ -577,6 +581,11 @@ declare class Phase extends WithPage {
|
|
|
577
581
|
expectCompletedPhase(): Promise<void>;
|
|
578
582
|
clickViewAllCompletedPhase(): Promise<void>;
|
|
579
583
|
expectTaskToBePresent(taskName: string): Promise<void>;
|
|
584
|
+
expectContainingTask(taskName: string, exist?: boolean): Promise<void>;
|
|
585
|
+
addTaskInGroup(currentGroupType: string, taskTitle: string, taskGroup: string, taskType: string): Promise<void>;
|
|
586
|
+
openContextMenuForTaskInGroup(taskTitle: string, groupName: string): Promise<void>;
|
|
587
|
+
duplicatePhase(): Promise<void>;
|
|
588
|
+
expectActionsDisabled(): Promise<void>;
|
|
580
589
|
}
|
|
581
590
|
declare class RestartPhaseModel extends WithPage {
|
|
582
591
|
continueBtn: Locator;
|
|
@@ -828,6 +837,8 @@ declare class UsersPage extends WithPage {
|
|
|
828
837
|
toggleLoginPermission(username: string): Promise<void>;
|
|
829
838
|
addUser(): Promise<void>;
|
|
830
839
|
createUser(username: string, password: string): Promise<void>;
|
|
840
|
+
filterUser(username: string): Promise<void>;
|
|
841
|
+
expectToHaveFilteredUser(username: string): Promise<void>;
|
|
831
842
|
expectToHaveLoginPermission(username: string): Promise<void>;
|
|
832
843
|
deleteUser(username: string): Promise<void>;
|
|
833
844
|
openRoles(): Promise<void>;
|