@digital-ai/devops-page-object-release 0.0.0-pikachu-20250825164742 → 0.0.0-pikachu-20250902071255

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,11 +1,29 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-pikachu-20250825164742
3
+ ## 0.0.0-pikachu-20250902071255
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - b7e9f9c: S-123064 `Releases filter` - adjust page objects to follow new filter components
8
8
 
9
+ ## 0.0.76
10
+
11
+ ### Patch Changes
12
+
13
+ - 7beabf0: S-124144 Fix `expectTaskFailureManualPermission` selector
14
+
15
+ ## 0.0.75
16
+
17
+ ### Patch Changes
18
+
19
+ - 4e5b25c: S-123725: Modified the method - addNewInstance in connectionsPage
20
+
21
+ ## 0.0.74
22
+
23
+ ### Patch Changes
24
+
25
+ - 7e19b70: S-123733: Update phase title selector
26
+
9
27
  ## 0.0.73
10
28
 
11
29
  ### Patch Changes
package/dist/main.js CHANGED
@@ -4666,9 +4666,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
4666
4666
  }
4667
4667
  async setTitle(title) {
4668
4668
  await this.phaseLocator.locator(".phase-header .display").click();
4669
- await this.phaseLocator.locator(".phase-header input").clear();
4670
- await this.phaseLocator.locator(".phase-header input").fill(title);
4671
- await this.phaseLocator.locator(".phase-header input").blur();
4669
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
4670
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
4671
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
4672
4672
  }
4673
4673
  async isMenuItemEnabled(menuName, taskTitle, group = false) {
4674
4674
  await this.openContextMenuForTask(taskTitle, group);
@@ -5021,7 +5021,7 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
5021
5021
  }
5022
5022
  await this.page.getByTestId("save-select-task-btn").click();
5023
5023
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator("p").filter({
5024
- hasText: "Your request has been rejected, your permissions may have been revoked."
5024
+ hasText: "You don’t have permission to view this page."
5025
5025
  })).toBeVisible();
5026
5026
  }
5027
5027
  async expectCurrentTaskCount(count) {
@@ -8244,9 +8244,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
8244
8244
  }
8245
8245
  async setTitle(title) {
8246
8246
  await this.phaseLocator.locator(".phase-header .display").click();
8247
- await this.phaseLocator.locator(".phase-header input").clear();
8248
- await this.phaseLocator.locator(".phase-header input").fill(title);
8249
- await this.phaseLocator.locator(".phase-header input").blur();
8247
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
8248
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
8249
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
8250
8250
  }
8251
8251
  async expectTaskBorderWithColor(taskName, color) {
8252
8252
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
@@ -9511,7 +9511,7 @@ class $3ec0e9cf832fdde8$export$9823ddf5e80770e7 extends (0, $f8721861c660dd88$ex
9511
9511
  async addNewInstance(typeName) {
9512
9512
  await this.page.locator(`.configuration-type`).filter({
9513
9513
  hasText: typeName
9514
- }).locator(`.new-instance .button`).click({
9514
+ }).locator(`.new-instance .button`).first().click({
9515
9515
  force: true
9516
9516
  });
9517
9517
  return new $3ec0e9cf832fdde8$var$ConfigurationInstancePage(this.page);