@digital-ai/devops-page-object-release 0.0.0-snapshot-20251125090500 → 0.0.0-snapshot-20251125090528
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 +2 -2
- package/dist/main.js +17 -57
- package/dist/main.js.map +1 -1
- package/dist/module.js +17 -57
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -8
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -2902,6 +2902,23 @@ class $c9bb587dd92143c3$export$d1077068a9cc9f17 extends (0, $9626bc9256ce31f7$ex
|
|
|
2902
2902
|
async expectReleaseTaggedWith(tagName) {
|
|
2903
2903
|
await (0, $hOLA6$expect)(this.page.locator("#tags")).toContainText(tagName);
|
|
2904
2904
|
}
|
|
2905
|
+
async expectReleaseNotTaggedWith(tagName) {
|
|
2906
|
+
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
|
|
2907
|
+
}
|
|
2908
|
+
async addTag(tagName) {
|
|
2909
|
+
const tagInput = this.page.locator("#tags input");
|
|
2910
|
+
await tagInput.fill(tagName);
|
|
2911
|
+
await tagInput.press("Enter");
|
|
2912
|
+
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toBeVisible();
|
|
2913
|
+
}
|
|
2914
|
+
async removeTag(tagName) {
|
|
2915
|
+
const tag = this.page.locator(`#tags`, {
|
|
2916
|
+
hasText: tagName
|
|
2917
|
+
});
|
|
2918
|
+
const removeIcon = tag.locator(".tag-close");
|
|
2919
|
+
await removeIcon.click();
|
|
2920
|
+
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
|
|
2921
|
+
}
|
|
2905
2922
|
async expectTemplateTitleToBe(templateTitle) {
|
|
2906
2923
|
await (0, $hOLA6$expect)(this.page.locator('[data-test="created-from-template"]')).toContainText(templateTitle);
|
|
2907
2924
|
}
|
|
@@ -4979,52 +4996,6 @@ class $112122b844be02a3$export$e2613a7eee3a1b1b extends (0, $9626bc9256ce31f7$ex
|
|
|
4979
4996
|
});
|
|
4980
4997
|
await tag.locator(".close-icon").click();
|
|
4981
4998
|
}
|
|
4982
|
-
async expectPermissionReadOnly(permission, team, readOnly) {
|
|
4983
|
-
const rowLocator = this.page.locator(`table tr:has-text("${permission}")`);
|
|
4984
|
-
const tagLocator = rowLocator.locator(`.tag-label:has-text("${team}")`);
|
|
4985
|
-
if (readOnly) await (0, $hOLA6$expect)(tagLocator).toBeVisible();
|
|
4986
|
-
else {
|
|
4987
|
-
const closeIconLocator = tagLocator.locator(".. >> .tag-close");
|
|
4988
|
-
await (0, $hOLA6$expect)(closeIconLocator).toBeVisible();
|
|
4989
|
-
}
|
|
4990
|
-
}
|
|
4991
|
-
async expectTeamsNotToExist(teams, readOnly) {
|
|
4992
|
-
for (const team of teams){
|
|
4993
|
-
const teamRow = this.page.locator(`tr:has-text("${team}")`);
|
|
4994
|
-
if (readOnly) await (0, $hOLA6$expect)(teamRow.getByTitle("Delete")).toHaveCount(0);
|
|
4995
|
-
else await (0, $hOLA6$expect)(teamRow.getByTitle("Delete")).toHaveCount(1);
|
|
4996
|
-
}
|
|
4997
|
-
}
|
|
4998
|
-
async expectInheritTeamsDisabled() {
|
|
4999
|
-
const inheritCheckbox = this.page.locator(".inherit-checkbox input");
|
|
5000
|
-
await (0, $hOLA6$expect)(inheritCheckbox).toBeVisible();
|
|
5001
|
-
await (0, $hOLA6$expect)(inheritCheckbox).toBeDisabled();
|
|
5002
|
-
}
|
|
5003
|
-
async expectNewTeamButtonDisabled() {
|
|
5004
|
-
const addTeamButton = this.page.locator(".button-add-team");
|
|
5005
|
-
await (0, $hOLA6$expect)(addTeamButton).toBeDisabled();
|
|
5006
|
-
}
|
|
5007
|
-
async expectRemoveTeamButtonNotToExist() {
|
|
5008
|
-
await (0, $hOLA6$expect)(this.page.locator("#teams-permissions-table table tr .action-label")).toHaveCount(0);
|
|
5009
|
-
return this;
|
|
5010
|
-
}
|
|
5011
|
-
async expectSaveButtonDisabled() {
|
|
5012
|
-
const saveButton = this.page.getByRole("button", {
|
|
5013
|
-
name: "Save"
|
|
5014
|
-
});
|
|
5015
|
-
await (0, $hOLA6$expect)(saveButton).toBeVisible();
|
|
5016
|
-
await (0, $hOLA6$expect)(saveButton).toBeDisabled();
|
|
5017
|
-
return this;
|
|
5018
|
-
}
|
|
5019
|
-
async expectTeamsReadOnly(teams, readOnly) {
|
|
5020
|
-
for (const team of teams){
|
|
5021
|
-
const teamRow = this.page.locator("table").first().locator("tr", {
|
|
5022
|
-
hasText: team
|
|
5023
|
-
});
|
|
5024
|
-
await (0, $hOLA6$expect)(teamRow.locator(".tag-label + .tag-close")).toHaveCount(readOnly ? 0 : 1);
|
|
5025
|
-
}
|
|
5026
|
-
return this;
|
|
5027
|
-
}
|
|
5028
4999
|
async expectPermissionNotToExist(permission, team) {
|
|
5029
5000
|
const row = this.page.locator("table tr", {
|
|
5030
5001
|
hasText: permission
|
|
@@ -9196,17 +9167,6 @@ class $e72552cbf941ecfa$export$b8a61e5c71402559 {
|
|
|
9196
9167
|
await this.page.waitForSelector("#releases-content");
|
|
9197
9168
|
return new (0, $50c91328c9110668$export$b453f08936c58edb)(this.page);
|
|
9198
9169
|
}
|
|
9199
|
-
async openFolderByName(folderName) {
|
|
9200
|
-
const folder = this.page.getByTitle(folderName);
|
|
9201
|
-
await (0, $hOLA6$expect)(folder).toBeVisible({
|
|
9202
|
-
timeout: 5000
|
|
9203
|
-
});
|
|
9204
|
-
await folder.click();
|
|
9205
|
-
await (0, $hOLA6$expect)(this.page.locator(".MuiBreadcrumbs-li").getByRole("link", {
|
|
9206
|
-
name: folderName
|
|
9207
|
-
})).toBeVisible();
|
|
9208
|
-
return this;
|
|
9209
|
-
}
|
|
9210
9170
|
async openProfilePage() {
|
|
9211
9171
|
await this.page.goto(`./#/profile`);
|
|
9212
9172
|
return new (0, $a5932af323ac015a$export$3cf9c90f870f31bd)(this.page);
|