@digital-ai/devops-page-object-release 0.0.73 → 0.0.75

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.75
4
+
5
+ ### Patch Changes
6
+
7
+ - 4e5b25c: S-123725: Modified the method - addNewInstance in connectionsPage
8
+
9
+ ## 0.0.74
10
+
11
+ ### Patch Changes
12
+
13
+ - 7e19b70: S-123733: Update phase title selector
14
+
3
15
  ## 0.0.73
4
16
 
5
17
  ### Patch Changes
package/dist/main.js CHANGED
@@ -4598,9 +4598,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
4598
4598
  }
4599
4599
  async setTitle(title) {
4600
4600
  await this.phaseLocator.locator(".phase-header .display").click();
4601
- await this.phaseLocator.locator(".phase-header input").clear();
4602
- await this.phaseLocator.locator(".phase-header input").fill(title);
4603
- 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();
4604
4604
  }
4605
4605
  async isMenuItemEnabled(menuName, taskTitle, group = false) {
4606
4606
  await this.openContextMenuForTask(taskTitle, group);
@@ -8227,9 +8227,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
8227
8227
  }
8228
8228
  async setTitle(title) {
8229
8229
  await this.phaseLocator.locator(".phase-header .display").click();
8230
- await this.phaseLocator.locator(".phase-header input").clear();
8231
- await this.phaseLocator.locator(".phase-header input").fill(title);
8232
- 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();
8233
8233
  }
8234
8234
  async expectTaskBorderWithColor(taskName, color) {
8235
8235
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
@@ -9494,7 +9494,7 @@ class $3ec0e9cf832fdde8$export$9823ddf5e80770e7 extends (0, $f8721861c660dd88$ex
9494
9494
  async addNewInstance(typeName) {
9495
9495
  await this.page.locator(`.configuration-type`).filter({
9496
9496
  hasText: typeName
9497
- }).locator(`.new-instance .button`).click({
9497
+ }).locator(`.new-instance .button`).first().click({
9498
9498
  force: true
9499
9499
  });
9500
9500
  return new $3ec0e9cf832fdde8$var$ConfigurationInstancePage(this.page);