@digital-ai/devops-page-object-release 0.0.78 → 0.0.80
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 +13 -0
- package/dist/main.js +12 -4
- package/dist/main.js.map +1 -1
- package/dist/module.js +12 -4
- 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/dist/module.js
CHANGED
|
@@ -218,7 +218,7 @@ class $b34a21212642e54d$export$7034f81075184002 extends (0, $9626bc9256ce31f7$ex
|
|
|
218
218
|
return this;
|
|
219
219
|
}
|
|
220
220
|
async gotoListView() {
|
|
221
|
-
await this.clickOnReleasesPageTab("
|
|
221
|
+
await this.clickOnReleasesPageTab("Releases");
|
|
222
222
|
await (0, $hOLA6$expect)(this.page.locator(".release-list")).toBeVisible();
|
|
223
223
|
}
|
|
224
224
|
async gotoCalendarView() {
|
|
@@ -1593,7 +1593,7 @@ class $90bb70a7e909e500$export$519356f6c50361f7 extends (0, $9626bc9256ce31f7$ex
|
|
|
1593
1593
|
}
|
|
1594
1594
|
async acceptDialogWindow() {
|
|
1595
1595
|
await this.page.getByRole("button", {
|
|
1596
|
-
name: "
|
|
1596
|
+
name: "change template"
|
|
1597
1597
|
}).click();
|
|
1598
1598
|
}
|
|
1599
1599
|
async setRiskProfile(RiskProfile) {
|
|
@@ -4189,8 +4189,8 @@ class $4cdce1306be47ecd$export$16a2118d39966c86 {
|
|
|
4189
4189
|
this.rowSelector = ".activity-logs-table .dot-tbody .dot-tr:not(.loading-row)";
|
|
4190
4190
|
}
|
|
4191
4191
|
async expectActivityLogEntry({ msg: msg , user: user }) {
|
|
4192
|
-
if (user) await (0, $hOLA6$expect)(this.page.locator(`${this.rowSelector}:has-text("${user}")`)).toBeVisible();
|
|
4193
|
-
if (msg) await (0, $hOLA6$expect)(this.page.locator(`${this.rowSelector}:has-text("${msg}")`)).toBeVisible();
|
|
4192
|
+
if (user) await (0, $hOLA6$expect)(this.page.locator(`${this.rowSelector}:has-text("${user}")`).first()).toBeVisible();
|
|
4193
|
+
if (msg) await (0, $hOLA6$expect)(this.page.locator(`${this.rowSelector}:has-text("${msg}")`).first()).toBeVisible();
|
|
4194
4194
|
return this;
|
|
4195
4195
|
}
|
|
4196
4196
|
async expectCountToBe(count) {
|
|
@@ -4284,6 +4284,14 @@ class $4cdce1306be47ecd$export$eace2be4de1d3377 extends (0, $9626bc9256ce31f7$ex
|
|
|
4284
4284
|
await this.page.goto(timelinePath);
|
|
4285
4285
|
return this;
|
|
4286
4286
|
}
|
|
4287
|
+
async openDeliveryPatternActivityLogs(folderId, deliveryId, filter) {
|
|
4288
|
+
const patternActivityLogs = await this.appendFilterQueryString(`#/folders/${folderId}/delivery-patterns/${deliveryId}/logs`, filter);
|
|
4289
|
+
await this.page.goto(patternActivityLogs);
|
|
4290
|
+
await this.page.getByTestId("activity-logs-title-typography").waitFor({
|
|
4291
|
+
state: "visible"
|
|
4292
|
+
});
|
|
4293
|
+
return new $4cdce1306be47ecd$export$16a2118d39966c86(this.page);
|
|
4294
|
+
}
|
|
4287
4295
|
async openDeliveries() {
|
|
4288
4296
|
await this.page.goto("./#/deliveries");
|
|
4289
4297
|
}
|