@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 +13 -1
- package/dist/main.js +7 -6
- package/dist/main.js.map +1 -1
- package/dist/module.js +7 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/module.js
CHANGED
|
@@ -3351,6 +3351,7 @@ class $43cbcdfccb6c2a76$export$f43492e8ac3c566 extends (0, $9626bc9256ce31f7$exp
|
|
|
3351
3351
|
await this.page.getByRole("button", {
|
|
3352
3352
|
name: "Start"
|
|
3353
3353
|
}).click();
|
|
3354
|
+
await (0, $hOLA6$expect)(this.page.locator(".dot-dialog")).not.toBeVisible();
|
|
3354
3355
|
await this.page.waitForSelector("#release");
|
|
3355
3356
|
}
|
|
3356
3357
|
async waitForCompletion(timeout = this.defaultTimeout) {
|
|
@@ -3729,9 +3730,9 @@ class $43cbcdfccb6c2a76$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
3729
3730
|
}
|
|
3730
3731
|
async setTitle(title) {
|
|
3731
3732
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
3732
|
-
await this.phaseLocator.locator(
|
|
3733
|
-
await this.phaseLocator.locator(
|
|
3734
|
-
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();
|
|
3735
3736
|
}
|
|
3736
3737
|
async isMenuItemEnabled(menuName, taskTitle, group = false) {
|
|
3737
3738
|
await this.openContextMenuForTask(taskTitle, group);
|
|
@@ -7307,9 +7308,9 @@ class $0c4084f199d70d72$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
7307
7308
|
}
|
|
7308
7309
|
async setTitle(title) {
|
|
7309
7310
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
7310
|
-
await this.phaseLocator.locator(
|
|
7311
|
-
await this.phaseLocator.locator(
|
|
7312
|
-
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();
|
|
7313
7314
|
}
|
|
7314
7315
|
async expectTaskBorderWithColor(taskName, color) {
|
|
7315
7316
|
await (0, $hOLA6$expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
|