@digital-ai/devops-page-object-release 0.0.99 → 0.0.101

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,17 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.101
4
+
5
+ ### Patch Changes
6
+
7
+ - 598da31: S-125097: Fixed the Jenkins plugins issue
8
+
9
+ ## 0.0.100
10
+
11
+ ### Patch Changes
12
+
13
+ - 6235774: Fixed global variables values entry related issues
14
+
3
15
  ## 0.0.99
4
16
 
5
17
  ### 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
  }
@@ -6599,7 +6599,7 @@ class $b4d98f757ef92467$export$7b434e00c788d0bf extends (0, $f8721861c660dd88$ex
6599
6599
  }
6600
6600
  async searchForPlugins(searchText) {
6601
6601
  await this.page.getByPlaceholder("Search for plugin").fill(searchText);
6602
- (0, $kKeXs$playwrighttest.expect)(await this.page.locator(".PluginTile__title-and-version___1HsNr span").count()).toBeGreaterThan(0);
6602
+ (0, $kKeXs$playwrighttest.expect)(await this.page.locator(".PluginTile__title-and-version___Vaimt span").count()).toBeGreaterThan(0);
6603
6603
  }
6604
6604
  async refreshPluginList() {
6605
6605
  await (0, $kKeXs$playwrighttest.expect)(this.page.getByTestId("plugin-refresh-btn")).toBeVisible();
@@ -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