@digital-ai/devops-page-object-release 0.0.34 → 0.0.35
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 +6 -0
- package/dist/main.js +38 -8
- package/dist/main.js.map +1 -1
- package/dist/module.js +38 -8
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -483,6 +483,9 @@ declare class ReleasePropertiesPage extends WithPage {
|
|
|
483
483
|
expectReleaseTaggedWith(tagName: string): Promise<void>;
|
|
484
484
|
expectTemplateTitleToBe(templateTitle: string): Promise<void>;
|
|
485
485
|
expectRiskProfileTitleToBe(riskProfile: string): Promise<void>;
|
|
486
|
+
expectStartFromReleaseToBe(parentRelease: string): Promise<void>;
|
|
487
|
+
expectTemplateURLToBe(templateURL: string): Promise<void>;
|
|
488
|
+
expectStartFromReleaseURLToBe(parentReleaseURL: string): Promise<void>;
|
|
486
489
|
}
|
|
487
490
|
declare class ReleaseTeamsAndPermissionsPage extends WithPage {
|
|
488
491
|
saveButton: Locator;
|
|
@@ -658,10 +661,12 @@ declare class Phase extends WithPage {
|
|
|
658
661
|
deletePhase(phaseName: string): Promise<void>;
|
|
659
662
|
expectCompletedPhase(): Promise<void>;
|
|
660
663
|
clickViewAllCompletedPhase(): Promise<void>;
|
|
661
|
-
expectTaskToBePresent(taskName: string): Promise<void>;
|
|
664
|
+
expectTaskToBePresent(taskName: string, visible?: boolean): Promise<void>;
|
|
662
665
|
expectContainingTask(taskName: string, exist?: boolean): Promise<void>;
|
|
663
666
|
addTaskInGroup(currentGroupType: string, taskTitle: string, taskGroup: string, taskType: string): Promise<void>;
|
|
664
|
-
openContextMenuForTaskInGroup(
|
|
667
|
+
openContextMenuForTaskInGroup(groupName: string, taskTitle: string): Promise<void>;
|
|
668
|
+
duplicateFromContextualMenuInGroup(groupName: string, taskTitle: string): Promise<this>;
|
|
669
|
+
deleteFromContextualMenuInGroup(groupName: string, taskTitle: string): Promise<this>;
|
|
665
670
|
duplicatePhase(): Promise<void>;
|
|
666
671
|
expectActionsDisabled(): Promise<void>;
|
|
667
672
|
expectTaskFailureManualPermission(): Promise<void>;
|