@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 CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.0.58
4
10
 
5
11
  ### Patch Changes
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();