@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 +7 -1
- package/dist/main.js +6 -6
- package/dist/main.js.map +1 -1
- package/dist/module.js +6 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -3730,9 +3730,9 @@ class $43cbcdfccb6c2a76$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
3730
3730
|
}
|
|
3731
3731
|
async setTitle(title) {
|
|
3732
3732
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
3733
|
-
await this.phaseLocator.locator(
|
|
3734
|
-
await this.phaseLocator.locator(
|
|
3735
|
-
await this.phaseLocator.locator(
|
|
3733
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
3734
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
3735
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
3736
3736
|
}
|
|
3737
3737
|
async isMenuItemEnabled(menuName, taskTitle, group = false) {
|
|
3738
3738
|
await this.openContextMenuForTask(taskTitle, group);
|
|
@@ -7308,9 +7308,9 @@ class $0c4084f199d70d72$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
7308
7308
|
}
|
|
7309
7309
|
async setTitle(title) {
|
|
7310
7310
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
7311
|
-
await this.phaseLocator.locator(
|
|
7312
|
-
await this.phaseLocator.locator(
|
|
7313
|
-
await this.phaseLocator.locator(
|
|
7311
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
7312
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
7313
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
7314
7314
|
}
|
|
7315
7315
|
async expectTaskBorderWithColor(taskName, color) {
|
|
7316
7316
|
await (0, $hOLA6$expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
|