@digital-ai/devops-page-object-release 0.0.73 → 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 +6 -0
- 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
|
@@ -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(
|
|
3666
|
-
await this.phaseLocator.locator(
|
|
3667
|
-
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();
|
|
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(
|
|
7295
|
-
await this.phaseLocator.locator(
|
|
7296
|
-
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();
|
|
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);
|