@digital-ai/devops-page-object-release 0.0.99 → 0.0.100
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 +8 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +8 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -6224,7 +6224,7 @@ class $506d511737b3ea46$export$74ca1eaaa9a0054 extends (0, $f8721861c660dd88$exp
|
|
|
6224
6224
|
}
|
|
6225
6225
|
async addVariableText(valuename) {
|
|
6226
6226
|
await this.page.getByRole("combobox").selectOption("StringVariable");
|
|
6227
|
-
await this.page.locator(".variable-value").
|
|
6227
|
+
await this.page.locator(".variable-value input").fill(valuename);
|
|
6228
6228
|
await this.submitTheVariable();
|
|
6229
6229
|
}
|
|
6230
6230
|
async addVariableListbox(possiblevalue) {
|
|
@@ -6236,7 +6236,7 @@ class $506d511737b3ea46$export$74ca1eaaa9a0054 extends (0, $f8721861c660dd88$exp
|
|
|
6236
6236
|
}
|
|
6237
6237
|
async addVariablePassword(possiblevalue) {
|
|
6238
6238
|
await this.page.getByRole("combobox").selectOption("PasswordStringVariable");
|
|
6239
|
-
await this.page.locator('input[type="password"]').
|
|
6239
|
+
await this.page.locator('input[type="password"]').fill(possiblevalue);
|
|
6240
6240
|
await this.submitTheVariable();
|
|
6241
6241
|
}
|
|
6242
6242
|
async addVariableCheckbox() {
|
|
@@ -6301,7 +6301,7 @@ class $506d511737b3ea46$export$74ca1eaaa9a0054 extends (0, $f8721861c660dd88$exp
|
|
|
6301
6301
|
await this.page.getByRole("button", {
|
|
6302
6302
|
name: "New global variable"
|
|
6303
6303
|
}).click();
|
|
6304
|
-
await this.page.locator(`div.input-group > input`).
|
|
6304
|
+
await this.page.locator(`div.input-group > input`).fill(variableName);
|
|
6305
6305
|
await this.addVariablelabel.fill(labelname);
|
|
6306
6306
|
await this.page.locator(".variable-description input").fill(description);
|
|
6307
6307
|
}
|
|
@@ -10203,6 +10203,11 @@ class $4ef41cf96a5fae4c$export$b8a61e5c71402559 {
|
|
|
10203
10203
|
exact: true
|
|
10204
10204
|
}).click();
|
|
10205
10205
|
}
|
|
10206
|
+
async gotoHomePageFromRelease() {
|
|
10207
|
+
await this.page.getByRole("link", {
|
|
10208
|
+
name: "Home"
|
|
10209
|
+
}).click();
|
|
10210
|
+
}
|
|
10206
10211
|
async gotoFolderPage() {
|
|
10207
10212
|
await this.page.locator("ul.side-nav li").getByLabel("Folders", {
|
|
10208
10213
|
exact: true
|