@digital-ai/devops-page-object-release 0.0.78 → 0.0.79
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 -0
- package/dist/main.js +11 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +11 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
+
## 0.0.79
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ab109ca: S-124359: Update selector for new tabs
|
|
8
|
+
- 050039e: S-122948: [P3]delivery-pattern-activity-logs-scenario migrated to Playwright
|
|
9
|
+
|
|
3
10
|
## 0.0.78
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -1154,7 +1154,7 @@ class $e403098cd4f59faa$export$7034f81075184002 extends (0, $f8721861c660dd88$ex
|
|
|
1154
1154
|
return this;
|
|
1155
1155
|
}
|
|
1156
1156
|
async gotoListView() {
|
|
1157
|
-
await this.clickOnReleasesPageTab("
|
|
1157
|
+
await this.clickOnReleasesPageTab("Releases");
|
|
1158
1158
|
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".release-list")).toBeVisible();
|
|
1159
1159
|
}
|
|
1160
1160
|
async gotoCalendarView() {
|
|
@@ -5125,8 +5125,8 @@ class $b2d8d8d82fc8146c$export$16a2118d39966c86 {
|
|
|
5125
5125
|
this.rowSelector = ".activity-logs-table .dot-tbody .dot-tr:not(.loading-row)";
|
|
5126
5126
|
}
|
|
5127
5127
|
async expectActivityLogEntry({ msg: msg , user: user }) {
|
|
5128
|
-
if (user) await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`${this.rowSelector}:has-text("${user}")`)).toBeVisible();
|
|
5129
|
-
if (msg) await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`${this.rowSelector}:has-text("${msg}")`)).toBeVisible();
|
|
5128
|
+
if (user) await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`${this.rowSelector}:has-text("${user}")`).first()).toBeVisible();
|
|
5129
|
+
if (msg) await (0, $kKeXs$playwrighttest.expect)(this.page.locator(`${this.rowSelector}:has-text("${msg}")`).first()).toBeVisible();
|
|
5130
5130
|
return this;
|
|
5131
5131
|
}
|
|
5132
5132
|
async expectCountToBe(count) {
|
|
@@ -5220,6 +5220,14 @@ class $b2d8d8d82fc8146c$export$eace2be4de1d3377 extends (0, $f8721861c660dd88$ex
|
|
|
5220
5220
|
await this.page.goto(timelinePath);
|
|
5221
5221
|
return this;
|
|
5222
5222
|
}
|
|
5223
|
+
async openDeliveryPatternActivityLogs(folderId, deliveryId, filter) {
|
|
5224
|
+
const patternActivityLogs = await this.appendFilterQueryString(`#/folders/${folderId}/delivery-patterns/${deliveryId}/logs`, filter);
|
|
5225
|
+
await this.page.goto(patternActivityLogs);
|
|
5226
|
+
await this.page.getByTestId("activity-logs-title-typography").waitFor({
|
|
5227
|
+
state: "visible"
|
|
5228
|
+
});
|
|
5229
|
+
return new $b2d8d8d82fc8146c$export$16a2118d39966c86(this.page);
|
|
5230
|
+
}
|
|
5223
5231
|
async openDeliveries() {
|
|
5224
5232
|
await this.page.goto("./#/deliveries");
|
|
5225
5233
|
}
|