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

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,17 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-pikachu-20250825164742
3
+ ## 0.0.0-pikachu-20250828144727
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.74
10
+
11
+ ### Patch Changes
12
+
13
+ - 7e19b70: S-123733: Update phase title selector
14
+
9
15
  ## 0.0.73
10
16
 
11
17
  ### 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);
@@ -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);