@digital-ai/devops-page-object-release 0.0.104 → 0.0.106
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 +12 -0
- package/dist/main.js +41 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +41 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -430,6 +430,7 @@ declare class StringMap extends WithPage {
|
|
|
430
430
|
setValueFromMap(key: string, value: string): Promise<void>;
|
|
431
431
|
removeValueFromMap(key: string): Promise<this>;
|
|
432
432
|
expectStringMapCount(count: number): Promise<this>;
|
|
433
|
+
expectStringMapReadOnlyCount(count: number): Promise<this>;
|
|
433
434
|
expectAddButtonDisabledForMap(key: string, value: string): Promise<this>;
|
|
434
435
|
expectInputFieldDisabledForMap(): Promise<this>;
|
|
435
436
|
}
|
|
@@ -775,6 +776,8 @@ declare class ReleasePage extends WithPage {
|
|
|
775
776
|
openPlannerView(): Promise<void>;
|
|
776
777
|
expandGanttFolder(): Promise<void>;
|
|
777
778
|
backToRelease(): Promise<void>;
|
|
779
|
+
expectGoBackButtonTitleToBe(text: string): Promise<this>;
|
|
780
|
+
expectTabsVisible(tabs: string[]): Promise<this>;
|
|
778
781
|
expectTitleToBeInBreadcrumbLink(title: string): Promise<void>;
|
|
779
782
|
expectHasPhase(title: string): Promise<void>;
|
|
780
783
|
addNewPhase(phaseName?: string): Promise<void>;
|
|
@@ -1382,6 +1385,8 @@ declare class FolderPage extends WithPage {
|
|
|
1382
1385
|
backToAllFolders(): Promise<this>;
|
|
1383
1386
|
createFolder(folderName: string): Promise<this>;
|
|
1384
1387
|
openFolder(folderName: string): Promise<this>;
|
|
1388
|
+
expandFolder(folderName: string): Promise<this>;
|
|
1389
|
+
openFolderByRow(folderName: string): Promise<this>;
|
|
1385
1390
|
openGroups(): Promise<FolderGroupsPage>;
|
|
1386
1391
|
createGroup(groupName: string): Promise<this>;
|
|
1387
1392
|
selectPlannedStatus(): Promise<this>;
|