@digital-ai/devops-page-object-release 1.0.13 → 1.0.15
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 +14319 -33
- package/dist/main.js.map +1 -1
- package/dist/module.js +79 -33
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1715,6 +1715,7 @@ declare abstract class VariablesBasePage extends WithPage {
|
|
|
1715
1715
|
getVariableSearchInputSelector(): string;
|
|
1716
1716
|
expectVariablesCountToBe(count: number): Promise<void>;
|
|
1717
1717
|
expectFirstVariableWithName(name: string): Promise<void>;
|
|
1718
|
+
expectEmptyStatePresent(titleText: string, subtitleText: string, buttonText: string): Promise<void>;
|
|
1718
1719
|
protected searchForVariable(variableName: string): Promise<void>;
|
|
1719
1720
|
}
|
|
1720
1721
|
declare class ReleaseVariablesPage extends VariablesBasePage {
|
|
@@ -1994,6 +1995,7 @@ declare class TemplateListPage extends WithPage {
|
|
|
1994
1995
|
clickNewReleaseIcon(templateName: string): Promise<void>;
|
|
1995
1996
|
createTemplate(templateName: string, description: string): Promise<void>;
|
|
1996
1997
|
filterByTitle(templateName: string): Promise<void>;
|
|
1998
|
+
expectOnlyOneTemplateVisible(templateName: string): Promise<void>;
|
|
1997
1999
|
}
|
|
1998
2000
|
declare class RolesModal extends WithPage {
|
|
1999
2001
|
roleName: Locator;
|