@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/dist/module.js CHANGED
@@ -3662,9 +3662,9 @@ class $43cbcdfccb6c2a76$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
3662
3662
  }
3663
3663
  async setTitle(title) {
3664
3664
  await this.phaseLocator.locator(".phase-header .display").click();
3665
- await this.phaseLocator.locator(".phase-header input").clear();
3666
- await this.phaseLocator.locator(".phase-header input").fill(title);
3667
- await this.phaseLocator.locator(".phase-header input").blur();
3665
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
3666
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
3667
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
3668
3668
  }
3669
3669
  async isMenuItemEnabled(menuName, taskTitle, group = false) {
3670
3670
  await this.openContextMenuForTask(taskTitle, group);
@@ -7291,9 +7291,9 @@ class $0c4084f199d70d72$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
7291
7291
  }
7292
7292
  async setTitle(title) {
7293
7293
  await this.phaseLocator.locator(".phase-header .display").click();
7294
- await this.phaseLocator.locator(".phase-header input").clear();
7295
- await this.phaseLocator.locator(".phase-header input").fill(title);
7296
- await this.phaseLocator.locator(".phase-header input").blur();
7294
+ await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
7295
+ await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
7296
+ await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
7297
7297
  }
7298
7298
  async expectTaskBorderWithColor(taskName, color) {
7299
7299
  await (0, $hOLA6$expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
@@ -8558,7 +8558,7 @@ class $6c0f5b52769b32c3$export$9823ddf5e80770e7 extends (0, $9626bc9256ce31f7$ex
8558
8558
  async addNewInstance(typeName) {
8559
8559
  await this.page.locator(`.configuration-type`).filter({
8560
8560
  hasText: typeName
8561
- }).locator(`.new-instance .button`).click({
8561
+ }).locator(`.new-instance .button`).first().click({
8562
8562
  force: true
8563
8563
  });
8564
8564
  return new $6c0f5b52769b32c3$var$ConfigurationInstancePage(this.page);