@digital-ai/devops-page-object-release 0.0.0-pikachu-20250811113325 → 0.0.0-pikachu-20250814100204
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 +8 -1
- package/dist/main.js +7 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +7 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
-
## 0.0.0-pikachu-
|
|
3
|
+
## 0.0.0-pikachu-20250814100204
|
|
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.71
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- cb00215: Fix Search label rename
|
|
14
|
+
- 36f2832: S-122814: Added a method for team and user validation
|
|
15
|
+
|
|
9
16
|
## 0.0.70
|
|
10
17
|
|
|
11
18
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -3858,9 +3858,13 @@ class $d330a7d6f7926d53$export$3bc3e140e0dcb075 extends (0, $f8721861c660dd88$ex
|
|
|
3858
3858
|
async expectSaveButtonDisabled() {
|
|
3859
3859
|
(0, $kKeXs$playwrighttest.expect)(this.saveButton).toBeDisabled();
|
|
3860
3860
|
}
|
|
3861
|
-
async
|
|
3862
|
-
const
|
|
3863
|
-
|
|
3861
|
+
async expectUserIsAssignedToTeam(teamName, userName) {
|
|
3862
|
+
const releaseAdminRow = this.page.locator("#teams-permissions-table tr", {
|
|
3863
|
+
hasText: teamName
|
|
3864
|
+
});
|
|
3865
|
+
await (0, $kKeXs$playwrighttest.expect)(releaseAdminRow.locator("span.tag-wrapper.tag-label", {
|
|
3866
|
+
hasText: userName
|
|
3867
|
+
})).toBeVisible();
|
|
3864
3868
|
}
|
|
3865
3869
|
}
|
|
3866
3870
|
|