@digital-ai/devops-page-object-release 0.0.0-snapshot-20251201054550 → 0.0.0-snapshot-20251201073056
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 +12 -57
- package/dist/main.js.map +1 -1
- package/dist/module.js +12 -57
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -8
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
-
## 0.0.0-snapshot-
|
|
3
|
+
## 0.0.0-snapshot-20251201073056
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 94dc456: S-126454 - added new methods for regional settings verification and editing date and time format
|
|
8
8
|
|
|
9
9
|
## 0.0.93
|
|
10
10
|
|
package/dist/main.js
CHANGED
|
@@ -5915,52 +5915,6 @@ class $e5c8dec182aa2e84$export$e2613a7eee3a1b1b extends (0, $f8721861c660dd88$ex
|
|
|
5915
5915
|
});
|
|
5916
5916
|
await tag.locator(".close-icon").click();
|
|
5917
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
|
-
}
|
|
5964
5918
|
async expectPermissionNotToExist(permission, team) {
|
|
5965
5919
|
const row = this.page.locator("table tr", {
|
|
5966
5920
|
hasText: permission
|
|
@@ -6545,6 +6499,12 @@ class $00fc48341ebf7de4$export$2fb4351c41ce6e7a extends (0, $f8721861c660dd88$ex
|
|
|
6545
6499
|
name: "Personal settings for admin"
|
|
6546
6500
|
})).toBeVisible();
|
|
6547
6501
|
}
|
|
6502
|
+
async verifyUserReginalSettings(userFullName) {
|
|
6503
|
+
await this.page.locator("li").getByLabel(userFullName).click();
|
|
6504
|
+
await (0, $kKeXs$playwrighttest.expect)(this.page.getByRole("heading", {
|
|
6505
|
+
name: "Personal regional settings"
|
|
6506
|
+
})).toBeVisible();
|
|
6507
|
+
}
|
|
6548
6508
|
async clickAccessTokens() {
|
|
6549
6509
|
await this.page.getByText("Access tokens").click();
|
|
6550
6510
|
await (0, $kKeXs$playwrighttest.expect)(this.page.getByLabel("breadcrumb").getByText("Access tokens")).toBeVisible();
|
|
@@ -6698,6 +6658,12 @@ class $010122e1d9b28b80$export$3cf9c90f870f31bd extends (0, $f8721861c660dd88$ex
|
|
|
6698
6658
|
await this.page.getByText("Save").click();
|
|
6699
6659
|
(0, $kKeXs$playwrighttest.expect)(await this.page.locator(".saved-text").textContent()).toContain("Last saved on ");
|
|
6700
6660
|
}
|
|
6661
|
+
async editUserProfileDateAndTimeFormat(dateFormat, timeFormat) {
|
|
6662
|
+
await this.page.locator('select[ng-model="$ctrl.profile.dateFormat"]').selectOption(dateFormat);
|
|
6663
|
+
await this.page.locator('select[ng-model="$ctrl.profile.timeFormat"]').selectOption(timeFormat);
|
|
6664
|
+
await this.page.getByText("Save").click();
|
|
6665
|
+
(0, $kKeXs$playwrighttest.expect)(await this.page.locator(".saved-text").textContent()).toContain("Last saved on ");
|
|
6666
|
+
}
|
|
6701
6667
|
async generateNewAccessToken(tokenName, expiryOptions) {
|
|
6702
6668
|
await this.page.getByRole("button", {
|
|
6703
6669
|
name: "Generate token"
|
|
@@ -10132,17 +10098,6 @@ class $4ef41cf96a5fae4c$export$b8a61e5c71402559 {
|
|
|
10132
10098
|
await this.page.waitForSelector("#releases-content");
|
|
10133
10099
|
return new (0, $9058d40a81bdb1f5$export$b453f08936c58edb)(this.page);
|
|
10134
10100
|
}
|
|
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
|
-
}
|
|
10146
10101
|
async openProfilePage() {
|
|
10147
10102
|
await this.page.goto(`./#/profile`);
|
|
10148
10103
|
return new (0, $010122e1d9b28b80$export$3cf9c90f870f31bd)(this.page);
|