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

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,17 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.93
4
+
5
+ ### Patch Changes
6
+
7
+ - 8fd6062: Corrected the User Filter placeholder to the new UI label change
8
+
9
+ ## 0.0.92
10
+
11
+ ### Patch Changes
12
+
13
+ - 0a45c1f: S-125886: update connection page's input's selector
14
+
3
15
  ## 0.0.91
4
16
 
5
17
  ### Patch Changes
package/dist/main.js CHANGED
@@ -6796,7 +6796,7 @@ class $3ceab7c613cabfd6$export$107317390f5aa598 extends (0, $f8721861c660dd88$ex
6796
6796
  await this.modal.save();
6797
6797
  }
6798
6798
  async filterUser(username) {
6799
- await this.page.getByPlaceholder("Filter...").fill(username);
6799
+ await this.page.getByPlaceholder("Filter by name, username or email ...").fill(username);
6800
6800
  }
6801
6801
  async expectToHaveFilteredUser(username) {
6802
6802
  return await (0, $kKeXs$playwrighttest.expect)(this.page.getByRole("row", {
@@ -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() {