@digital-ai/devops-page-object-release 0.0.0-pikachu-20250825164742 → 0.0.0-pikachu-20250902071255
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 +19 -1
- package/dist/main.js +8 -8
- package/dist/main.js.map +1 -1
- package/dist/module.js +8 -8
- 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
|
@@ -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);
|
|
@@ -4085,7 +4085,7 @@ class $43cbcdfccb6c2a76$var$Phase extends (0, $9626bc9256ce31f7$export$2b65d1d97
|
|
|
4085
4085
|
}
|
|
4086
4086
|
await this.page.getByTestId("save-select-task-btn").click();
|
|
4087
4087
|
await (0, $hOLA6$expect)(this.page.locator("p").filter({
|
|
4088
|
-
hasText: "
|
|
4088
|
+
hasText: "You don’t have permission to view this page."
|
|
4089
4089
|
})).toBeVisible();
|
|
4090
4090
|
}
|
|
4091
4091
|
async expectCurrentTaskCount(count) {
|
|
@@ -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);
|
|
@@ -8575,7 +8575,7 @@ class $6c0f5b52769b32c3$export$9823ddf5e80770e7 extends (0, $9626bc9256ce31f7$ex
|
|
|
8575
8575
|
async addNewInstance(typeName) {
|
|
8576
8576
|
await this.page.locator(`.configuration-type`).filter({
|
|
8577
8577
|
hasText: typeName
|
|
8578
|
-
}).locator(`.new-instance .button`).click({
|
|
8578
|
+
}).locator(`.new-instance .button`).first().click({
|
|
8579
8579
|
force: true
|
|
8580
8580
|
});
|
|
8581
8581
|
return new $6c0f5b52769b32c3$var$ConfigurationInstancePage(this.page);
|