@digital-ai/devops-page-object-release 0.0.0-pikachu-20250821071635 → 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,23 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-pikachu-20250821071635
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
+
15
+ ## 0.0.73
16
+
17
+ ### Patch Changes
18
+
19
+ - c1b4f5b: S-123074: Wait for dialog to be closed
20
+
9
21
  ## 0.0.72
10
22
 
11
23
  ### Patch Changes
package/dist/main.js CHANGED
@@ -4287,6 +4287,7 @@ class $9b9a8c3da392d020$export$f43492e8ac3c566 extends (0, $f8721861c660dd88$exp
4287
4287
  await this.page.getByRole("button", {
4288
4288
  name: "Start"
4289
4289
  }).click();
4290
+ await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".dot-dialog")).not.toBeVisible();
4290
4291
  await this.page.waitForSelector("#release");
4291
4292
  }
4292
4293
  async waitForCompletion(timeout = this.defaultTimeout) {
@@ -4665,9 +4666,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
4665
4666
  }
4666
4667
  async setTitle(title) {
4667
4668
  await this.phaseLocator.locator(".phase-header .display").click();
4668
- await this.phaseLocator.locator(".phase-header input").clear();
4669
- await this.phaseLocator.locator(".phase-header input").fill(title);
4670
- 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();
4671
4672
  }
4672
4673
  async isMenuItemEnabled(menuName, taskTitle, group = false) {
4673
4674
  await this.openContextMenuForTask(taskTitle, group);
@@ -8243,9 +8244,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
8243
8244
  }
8244
8245
  async setTitle(title) {
8245
8246
  await this.phaseLocator.locator(".phase-header .display").click();
8246
- await this.phaseLocator.locator(".phase-header input").clear();
8247
- await this.phaseLocator.locator(".phase-header input").fill(title);
8248
- 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();
8249
8250
  }
8250
8251
  async expectTaskBorderWithColor(taskName, color) {
8251
8252
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);