@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 +12 -0
- 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 +1 -1
package/dist/module.js
CHANGED
|
@@ -3283,6 +3283,7 @@ class $43cbcdfccb6c2a76$export$f43492e8ac3c566 extends (0, $9626bc9256ce31f7$exp
|
|
|
3283
3283
|
await this.page.getByRole("button", {
|
|
3284
3284
|
name: "Start"
|
|
3285
3285
|
}).click();
|
|
3286
|
+
await (0, $hOLA6$expect)(this.page.locator(".dot-dialog")).not.toBeVisible();
|
|
3286
3287
|
await this.page.waitForSelector("#release");
|
|
3287
3288
|
}
|
|
3288
3289
|
async waitForCompletion(timeout = this.defaultTimeout) {
|
|
@@ -3661,9 +3662,9 @@ class $43cbcdfccb6c2a76$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
3661
3662
|
}
|
|
3662
3663
|
async setTitle(title) {
|
|
3663
3664
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
3664
|
-
await this.phaseLocator.locator(
|
|
3665
|
-
await this.phaseLocator.locator(
|
|
3666
|
-
await this.phaseLocator.locator(
|
|
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();
|
|
3667
3668
|
}
|
|
3668
3669
|
async isMenuItemEnabled(menuName, taskTitle, group = false) {
|
|
3669
3670
|
await this.openContextMenuForTask(taskTitle, group);
|
|
@@ -7290,9 +7291,9 @@ class $0c4084f199d70d72$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
7290
7291
|
}
|
|
7291
7292
|
async setTitle(title) {
|
|
7292
7293
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
7293
|
-
await this.phaseLocator.locator(
|
|
7294
|
-
await this.phaseLocator.locator(
|
|
7295
|
-
await this.phaseLocator.locator(
|
|
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();
|
|
7296
7297
|
}
|
|
7297
7298
|
async expectTaskBorderWithColor(taskName, color) {
|
|
7298
7299
|
await (0, $hOLA6$expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
|