@digital-ai/devops-page-object-release 0.0.0-pikachu-20250825164742 → 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 +7 -1
- 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
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
-
## 0.0.0-pikachu-
|
|
3
|
+
## 0.0.0-pikachu-20250828144727
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- b7e9f9c: S-123064 `Releases filter` - adjust page objects to follow new filter components
|
|
8
8
|
|
|
9
|
+
## 0.0.74
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7e19b70: S-123733: Update phase title selector
|
|
14
|
+
|
|
9
15
|
## 0.0.73
|
|
10
16
|
|
|
11
17
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -4666,9 +4666,9 @@ class $9b9a8c3da392d020$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
|
|
|
4666
4666
|
}
|
|
4667
4667
|
async setTitle(title) {
|
|
4668
4668
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
4669
|
-
await this.phaseLocator.locator(
|
|
4670
|
-
await this.phaseLocator.locator(
|
|
4671
|
-
await this.phaseLocator.locator(
|
|
4669
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
4670
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
4671
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
4672
4672
|
}
|
|
4673
4673
|
async isMenuItemEnabled(menuName, taskTitle, group = false) {
|
|
4674
4674
|
await this.openContextMenuForTask(taskTitle, group);
|
|
@@ -8244,9 +8244,9 @@ class $959d38250779aa22$var$Phase extends (0, $f8721861c660dd88$export$2b65d1d97
|
|
|
8244
8244
|
}
|
|
8245
8245
|
async setTitle(title) {
|
|
8246
8246
|
await this.phaseLocator.locator(".phase-header .display").click();
|
|
8247
|
-
await this.phaseLocator.locator(
|
|
8248
|
-
await this.phaseLocator.locator(
|
|
8249
|
-
await this.phaseLocator.locator(
|
|
8247
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').clear();
|
|
8248
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').fill(title);
|
|
8249
|
+
await this.phaseLocator.locator('.phase-header input[type="text"]').blur();
|
|
8250
8250
|
}
|
|
8251
8251
|
async expectTaskBorderWithColor(taskName, color) {
|
|
8252
8252
|
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`.task-box:has-text('${taskName}')`)).toHaveCSS("border-top-color", color);
|