@digital-ai/devops-page-object-release 0.0.57 → 0.0.59
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 +7 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +7 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @digital-ai/devops-page-object-release
|
|
2
2
|
|
|
3
|
+
## 0.0.59
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bfea508: connectionsPage and index.tx updated for shared-configuration-authentication scenario
|
|
8
|
+
|
|
9
|
+
## 0.0.58
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a03ad38: D-39865: Fixed task-blackout script failure
|
|
14
|
+
|
|
3
15
|
## 0.0.57
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -6574,12 +6574,11 @@ class $a8855257f8bb2b12$export$61be9a231bfbe7b9 extends (0, $f8721861c660dd88$ex
|
|
|
6574
6574
|
}
|
|
6575
6575
|
// Have to revisit here fix the date selection for different months
|
|
6576
6576
|
async setEndDate(date) {
|
|
6577
|
-
const cDate = (0, ($parcel$interopDefault($kKeXs$moment)))(date).format("
|
|
6578
|
-
const month = (0, ($parcel$interopDefault($kKeXs$moment)))(date).format("MMMM").toLocaleLowerCase();
|
|
6577
|
+
const cDate = (0, ($parcel$interopDefault($kKeXs$moment)))(date).format("dddd, MMMM Do, YYYY");
|
|
6579
6578
|
await this.page.locator(".widget-datetime").filter({
|
|
6580
6579
|
hasText: "End date"
|
|
6581
6580
|
}).locator(".xl-react-widget-date input").click();
|
|
6582
|
-
await this.page.getByLabel(
|
|
6581
|
+
await this.page.getByLabel(`Choose ${cDate}`).click();
|
|
6583
6582
|
return this;
|
|
6584
6583
|
}
|
|
6585
6584
|
async save() {
|
|
@@ -8576,6 +8575,11 @@ class $3ec0e9cf832fdde8$var$ConfigurationInstancePage extends (0, $f8721861c660d
|
|
|
8576
8575
|
await this.page.getByLabel(fieldName).click();
|
|
8577
8576
|
return this;
|
|
8578
8577
|
}
|
|
8578
|
+
async expectTextFieldNotToExist(fieldName) {
|
|
8579
|
+
const locator = this.page.locator(`.input-scalar[data-test-id="${fieldName}"]`);
|
|
8580
|
+
await (0, $kKeXs$playwrighttest.expect)(locator).toHaveCount(0);
|
|
8581
|
+
return this;
|
|
8582
|
+
}
|
|
8579
8583
|
// To avoid flakiness and clicking around the page, we can directly click on the header
|
|
8580
8584
|
async clickHeader() {
|
|
8581
8585
|
await this.page.locator(".configuration-instance-page h2").click();
|