@digital-ai/devops-page-object-release 0.0.72 → 0.0.74

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.74
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e19b70: S-123733: Update phase title selector
8
+
9
+ ## 0.0.73
10
+
11
+ ### Patch Changes
12
+
13
+ - c1b4f5b: S-123074: Wait for dialog to be closed
14
+
3
15
  ## 0.0.72
4
16
 
5
17
  ### Patch Changes
package/dist/main.js CHANGED
@@ -4219,6 +4219,7 @@ class $9b9a8c3da392d020$export$f43492e8ac3c566 extends (0, $f8721861c660dd88$exp
4219
4219
  await this.page.getByRole("button", {
4220
4220
  name: "Start"
4221
4221
  }).click();
4222
+ await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".dot-dialog")).not.toBeVisible();
4222
4223
  await this.page.waitForSelector("#release");
4223
4224
  }
4224
4225
  async waitForCompletion(timeout = this.defaultTimeout) {
@@ -4597,9 +4598,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
4597
4598
  }
4598
4599
  async setTitle(title) {
4599
4600
  await this.phaseLocator.locator(".phase-header .display").click();
4600
- await this.phaseLocator.locator(".phase-header input").clear();
4601
- await this.phaseLocator.locator(".phase-header input").fill(title);
4602
- await this.phaseLocator.locator(".phase-header input").blur();
4601
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
4602
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
4603
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
4603
4604
  }
4604
4605
  async isMenuItemEnabled(menuName, taskTitle, group = false) {
4605
4606
  await this.openContextMenuForTask(taskTitle, group);
@@ -8226,9 +8227,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
8226
8227
  }
8227
8228
  async setTitle(title) {
8228
8229
  await this.phaseLocator.locator(".phase-header .display").click();
8229
- await this.phaseLocator.locator(".phase-header input").clear();
8230
- await this.phaseLocator.locator(".phase-header input").fill(title);
8231
- await this.phaseLocator.locator(".phase-header input").blur();
8230
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
8231
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
8232
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
8232
8233
  }
8233
8234
  async expectTaskBorderWithColor(taskName, color) {
8234
8235
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);