@digital-ai/devops-page-object-release 1.0.7 → 1.0.8
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 +204 -50
- package/dist/main.js.map +1 -1
- package/dist/module.js +204 -50
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -129,6 +129,8 @@ declare class VariablePage extends WithPage {
|
|
|
129
129
|
listAddButton: Locator;
|
|
130
130
|
dateUtil: DateUtil;
|
|
131
131
|
constructor(page: Page);
|
|
132
|
+
selectVariableFromSelector(variableName: string): Promise<void>;
|
|
133
|
+
selectValueFromInlineDropDown(value: string): Promise<void>;
|
|
132
134
|
openVariable(variableKey: string): Promise<VariableModal>;
|
|
133
135
|
addNewVariable(variableName: string, labelname: string, description?: string): Promise<void>;
|
|
134
136
|
addNewVariableInFolder(variableName: string, labelname: string, description?: string): Promise<void>;
|
|
@@ -160,6 +162,8 @@ declare class VariablePage extends WithPage {
|
|
|
160
162
|
declare class VariableModal extends WithPage {
|
|
161
163
|
dateUtil: DateUtil;
|
|
162
164
|
constructor(page: Page);
|
|
165
|
+
selectVariableFromSelector(variableName: string): Promise<void>;
|
|
166
|
+
selectValueFromInlineDropDown(value: string): Promise<void>;
|
|
163
167
|
expectValueToBe(value: string): Promise<void>;
|
|
164
168
|
expectValueToContain(value: string): Promise<void>;
|
|
165
169
|
close(): Promise<void>;
|
|
@@ -1427,6 +1431,7 @@ declare class GlobalVariable extends WithPage {
|
|
|
1427
1431
|
addVariableValue: Locator;
|
|
1428
1432
|
addVariablelabel: Locator;
|
|
1429
1433
|
constructor(page: Page);
|
|
1434
|
+
selectValueFromInlineDropDown(value: string): Promise<void>;
|
|
1430
1435
|
addVariableText(valuename: string): Promise<void>;
|
|
1431
1436
|
addVariableListbox(possiblevalue: string): Promise<void>;
|
|
1432
1437
|
addVariablePassword(possiblevalue: string): Promise<void>;
|
|
@@ -1694,6 +1699,8 @@ declare class ReleaseVariablesPage extends WithPage {
|
|
|
1694
1699
|
listAddButton: Locator;
|
|
1695
1700
|
dateUtil: DateUtil;
|
|
1696
1701
|
constructor(page: Page);
|
|
1702
|
+
selectVariableFromSelector(variableName: string): Promise<void>;
|
|
1703
|
+
selectValueFromInlineDropDown(value: string): Promise<void>;
|
|
1697
1704
|
openVariable(variableKey: string): Promise<ReleaseVariableModal>;
|
|
1698
1705
|
addNewVariable(variableName: string, labelname: string, description?: string): Promise<void>;
|
|
1699
1706
|
selectVariableTextType(valuename: string): Promise<void>;
|
|
@@ -1719,6 +1726,8 @@ declare class ReleaseVariablesPage extends WithPage {
|
|
|
1719
1726
|
declare class ReleaseVariableModal extends WithPage {
|
|
1720
1727
|
dateUtil: DateUtil;
|
|
1721
1728
|
constructor(page: Page);
|
|
1729
|
+
selectVariableFromSelector(variableName: string): Promise<void>;
|
|
1730
|
+
selectValueFromInlineDropDown(value: string): Promise<void>;
|
|
1722
1731
|
expectValueToBe(value: string): Promise<void>;
|
|
1723
1732
|
expectValueToContain(value: string): Promise<void>;
|
|
1724
1733
|
close(): Promise<void>;
|