@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/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -4598,9 +4598,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
|
|
|
4598
4598
|
}
|
|
4599
4599
|
async setTitle(title) {
|
|
4600
4600
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
4601
|
-
await this.phaseLocator.locator(
|
|
4602
|
-
await this.phaseLocator.locator(
|
|
4603
|
-
await this.phaseLocator.locator(
|
|
4601
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
4602
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
4603
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
4604
4604
|
}
|
|
4605
4605
|
async isMenuItemEnabled(menuName, taskTitle, group = false) {
|
|
4606
4606
|
await this.openContextMenuForTask(taskTitle, group);
|
|
@@ -8227,9 +8227,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
|
|
|
8227
8227
|
}
|
|
8228
8228
|
async setTitle(title) {
|
|
8229
8229
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
8230
|
-
await this.phaseLocator.locator(
|
|
8231
|
-
await this.phaseLocator.locator(
|
|
8232
|
-
await this.phaseLocator.locator(
|
|
8230
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
8231
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
8232
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
8233
8233
|
}
|
|
8234
8234
|
async expectTaskBorderWithColor(taskName, color) {
|
|
8235
8235
|
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
|