@digital-ai/devops-page-object-release 0.0.0-snapshot-20251126142213 → 0.0.0-snapshot-20251201054550

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-snapshot-20251126142213
3
+ ## 0.0.0-snapshot-20251201054550
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 48c6bd0: S-126903: Migrated release-tags-scenario to playwright
7
+ - 43cf4ad: S-126526: Added page object for edit-teams-and-permissions-scenario
8
8
 
9
9
  ## 0.0.93
10
10
 
package/dist/main.js CHANGED
@@ -3838,23 +3838,6 @@ class $8681d8a3f46f87b7$export$d1077068a9cc9f17 extends (0, $f8721861c660dd88$ex
3838
3838
  async expectReleaseTaggedWith(tagName) {
3839
3839
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator("#tags")).toContainText(tagName);
3840
3840
  }
3841
- async expectReleaseNotTaggedWith(tagName) {
3842
- await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
3843
- }
3844
- async addTag(tagName) {
3845
- const tagInput = this.page.locator("#tags input");
3846
- await tagInput.fill(tagName);
3847
- await tagInput.press("Enter");
3848
- await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`#tags >> text=${tagName}`)).toBeVisible();
3849
- }
3850
- async removeTag(tagName) {
3851
- const tag = this.page.locator(`#tags`, {
3852
- hasText: tagName
3853
- });
3854
- const removeIcon = tag.locator(".tag-close");
3855
- await removeIcon.click();
3856
- await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
3857
- }
3858
3841
  async expectTemplateTitleToBe(templateTitle) {
3859
3842
  await (0, $kKeXs$playwrighttest.expect)(this.page.locator('[data-test="created-from-template"]')).toContainText(templateTitle);
3860
3843
  }
@@ -5932,6 +5915,52 @@ class $e5c8dec182aa2e84$export$e2613a7eee3a1b1b extends (0, $f8721861c660dd88$ex
5932
5915
  });
5933
5916
  await tag.locator(".close-icon").click();
5934
5917
  }
5918
+ async expectPermissionReadOnly(permission, team, readOnly) {
5919
+ const rowLocator = this.page.locator(`table tr:has-text("${permission}")`);
5920
+ const tagLocator = rowLocator.locator(`.tag-label:has-text("${team}")`);
5921
+ if (readOnly) await (0, $kKeXs$playwrighttest.expect)(tagLocator).toBeVisible();
5922
+ else {
5923
+ const closeIconLocator = tagLocator.locator(".. >> .tag-close");
5924
+ await (0, $kKeXs$playwrighttest.expect)(closeIconLocator).toBeVisible();
5925
+ }
5926
+ }
5927
+ async expectTeamsNotToExist(teams, readOnly) {
5928
+ for (const team of teams){
5929
+ const teamRow = this.page.locator(`tr:has-text("${team}")`);
5930
+ if (readOnly) await (0, $kKeXs$playwrighttest.expect)(teamRow.getByTitle("Delete")).toHaveCount(0);
5931
+ else await (0, $kKeXs$playwrighttest.expect)(teamRow.getByTitle("Delete")).toHaveCount(1);
5932
+ }
5933
+ }
5934
+ async expectInheritTeamsDisabled() {
5935
+ const inheritCheckbox = this.page.locator(".inherit-checkbox input");
5936
+ await (0, $kKeXs$playwrighttest.expect)(inheritCheckbox).toBeVisible();
5937
+ await (0, $kKeXs$playwrighttest.expect)(inheritCheckbox).toBeDisabled();
5938
+ }
5939
+ async expectNewTeamButtonDisabled() {
5940
+ const addTeamButton = this.page.locator(".button-add-team");
5941
+ await (0, $kKeXs$playwrighttest.expect)(addTeamButton).toBeDisabled();
5942
+ }
5943
+ async expectRemoveTeamButtonNotToExist() {
5944
+ await (0, $kKeXs$playwrighttest.expect)(this.page.locator("#teams-permissions-table table tr .action-label")).toHaveCount(0);
5945
+ return this;
5946
+ }
5947
+ async expectSaveButtonDisabled() {
5948
+ const saveButton = this.page.getByRole("button", {
5949
+ name: "Save"
5950
+ });
5951
+ await (0, $kKeXs$playwrighttest.expect)(saveButton).toBeVisible();
5952
+ await (0, $kKeXs$playwrighttest.expect)(saveButton).toBeDisabled();
5953
+ return this;
5954
+ }
5955
+ async expectTeamsReadOnly(teams, readOnly) {
5956
+ for (const team of teams){
5957
+ const teamRow = this.page.locator("table").first().locator("tr", {
5958
+ hasText: team
5959
+ });
5960
+ await (0, $kKeXs$playwrighttest.expect)(teamRow.locator(".tag-label + .tag-close")).toHaveCount(readOnly ? 0 : 1);
5961
+ }
5962
+ return this;
5963
+ }
5935
5964
  async expectPermissionNotToExist(permission, team) {
5936
5965
  const row = this.page.locator("table tr", {
5937
5966
  hasText: permission
@@ -10103,6 +10132,17 @@ class $4ef41cf96a5fae4c$export$b8a61e5c71402559 {
10103
10132
  await this.page.waitForSelector("#releases-content");
10104
10133
  return new (0, $9058d40a81bdb1f5$export$b453f08936c58edb)(this.page);
10105
10134
  }
10135
+ async openFolderByName(folderName) {
10136
+ const folder = this.page.getByTitle(folderName);
10137
+ await (0, $kKeXs$playwrighttest.expect)(folder).toBeVisible({
10138
+ timeout: 5000
10139
+ });
10140
+ await folder.click();
10141
+ await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".MuiBreadcrumbs-li").getByRole("link", {
10142
+ name: folderName
10143
+ })).toBeVisible();
10144
+ return this;
10145
+ }
10106
10146
  async openProfilePage() {
10107
10147
  await this.page.goto(`./#/profile`);
10108
10148
  return new (0, $010122e1d9b28b80$export$3cf9c90f870f31bd)(this.page);