@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 +12 -0
- package/dist/main.js +3 -6
- package/dist/main.js.map +1 -1
- package/dist/module.js +3 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -5860,7 +5860,7 @@ class $2cb6a6ac6b17e85f$export$107317390f5aa598 extends (0, $9626bc9256ce31f7$ex
|
|
|
5860
5860
|
await this.modal.save();
|
|
5861
5861
|
}
|
|
5862
5862
|
async filterUser(username) {
|
|
5863
|
-
await this.page.getByPlaceholder("Filter...").fill(username);
|
|
5863
|
+
await this.page.getByPlaceholder("Filter by name, username or email ...").fill(username);
|
|
5864
5864
|
}
|
|
5865
5865
|
async expectToHaveFilteredUser(username) {
|
|
5866
5866
|
return await (0, $hOLA6$expect)(this.page.getByRole("row", {
|
|
@@ -8886,14 +8886,11 @@ class $6c0f5b52769b32c3$export$9823ddf5e80770e7 extends (0, $9626bc9256ce31f7$ex
|
|
|
8886
8886
|
return this;
|
|
8887
8887
|
}
|
|
8888
8888
|
async clearFilter() {
|
|
8889
|
-
await this.page.locator("
|
|
8890
|
-
force: true
|
|
8891
|
-
});
|
|
8889
|
+
await this.page.locator("#connections-search-filter").clear();
|
|
8892
8890
|
return this;
|
|
8893
8891
|
}
|
|
8894
8892
|
async searchInstances(instanceName) {
|
|
8895
|
-
await this.page.
|
|
8896
|
-
await this.page.getByPlaceholder("Search...").fill(instanceName);
|
|
8893
|
+
await this.page.locator("#connections-search-filter").fill(instanceName);
|
|
8897
8894
|
return this;
|
|
8898
8895
|
}
|
|
8899
8896
|
async expectErrorDisplayed() {
|