@digital-ai/devops-page-object-release 0.0.58 → 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 +6 -0
- package/dist/main.js +5 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +5 -0
- 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
package/dist/main.js
CHANGED
|
@@ -8575,6 +8575,11 @@ class $3ec0e9cf832fdde8$var$ConfigurationInstancePage extends (0, $f8721861c660d
|
|
|
8575
8575
|
await this.page.getByLabel(fieldName).click();
|
|
8576
8576
|
return this;
|
|
8577
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
|
+
}
|
|
8578
8583
|
// To avoid flakiness and clicking around the page, we can directly click on the header
|
|
8579
8584
|
async clickHeader() {
|
|
8580
8585
|
await this.page.locator(".configuration-instance-page h2").click();
|