@digital-ai/devops-page-object-release 0.0.81 → 0.0.83
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 +12 -0
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +2 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -130,7 +130,7 @@ class $b34a21212642e54d$export$7034f81075184002 extends (0, $9626bc9256ce31f7$ex
|
|
|
130
130
|
return ".release-list-header";
|
|
131
131
|
}
|
|
132
132
|
getBaseDrawerSelector() {
|
|
133
|
-
return `${this.getHeaderSelector()} .
|
|
133
|
+
return `${this.getHeaderSelector()} .filter-drawer`;
|
|
134
134
|
}
|
|
135
135
|
getFilterDrawerSelector() {
|
|
136
136
|
return `${this.getBaseDrawerSelector()} div[role="dialog"]`;
|
|
@@ -4593,7 +4593,7 @@ class $d13e78163af94d50$export$9b9454a7f137e99b extends (0, $9626bc9256ce31f7$ex
|
|
|
4593
4593
|
await this.clickNewDeliveryPattern();
|
|
4594
4594
|
await this.setPatternName(patternName);
|
|
4595
4595
|
await this.setPatternDescription(patternDescription);
|
|
4596
|
-
await this.setDuration(duration);
|
|
4596
|
+
if (duration) await this.setDuration(duration);
|
|
4597
4597
|
await (0, $hOLA6$expect)(this.page.locator(".action-toolbar-actions button").filter({
|
|
4598
4598
|
hasText: "Create"
|
|
4599
4599
|
})).toBeEnabled();
|