@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 +6 -0
- package/dist/main.js +2 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +2 -5
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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("
|
|
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.
|
|
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() {
|