@digital-ai/devops-page-object-release 0.0.91 → 0.0.92

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.92
4
+
5
+ ### Patch Changes
6
+
7
+ - 0a45c1f: S-125886: update connection page's input's selector
8
+
3
9
  ## 0.0.91
4
10
 
5
11
  ### Patch Changes
package/dist/main.js CHANGED
@@ -9822,14 +9822,11 @@ class $3ec0e9cf832fdde8$export$9823ddf5e80770e7 extends (0, $f8721861c660dd88$ex
9822
9822
  return this;
9823
9823
  }
9824
9824
  async clearFilter() {
9825
- await this.page.locator(".search-input-filter input").clear({
9826
- force: true
9827
- });
9825
+ await this.page.locator("#connections-search-filter").clear();
9828
9826
  return this;
9829
9827
  }
9830
9828
  async searchInstances(instanceName) {
9831
- await this.page.getByPlaceholder("Search...").click();
9832
- await this.page.getByPlaceholder("Search...").fill(instanceName);
9829
+ await this.page.locator("#connections-search-filter").fill(instanceName);
9833
9830
  return this;
9834
9831
  }
9835
9832
  async expectErrorDisplayed() {