@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.100
4
+
5
+ ### Patch Changes
6
+
7
+ - 6235774: Fixed global variables values entry related issues
8
+
3
9
  ## 0.0.99
4
10
 
5
11
  ### Patch Changes
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").type(valuename);
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"]').type(possiblevalue);
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`).type(variableName);
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