@digital-ai/devops-page-object-release 0.0.84 → 0.0.85
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 +4 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +4 -12
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -1140,7 +1140,7 @@ class $e403098cd4f59faa$export$7034f81075184002 extends (0, $f8721861c660dd88$ex
|
|
|
1140
1140
|
return this;
|
|
1141
1141
|
}
|
|
1142
1142
|
async clearAllFilters() {
|
|
1143
|
-
await this.page.locator(`${this.getHeaderSelector()} .
|
|
1143
|
+
await this.page.locator(`${this.getHeaderSelector()} .filter-row button[data-testid="clear-all-btn"]`).click();
|
|
1144
1144
|
return this;
|
|
1145
1145
|
}
|
|
1146
1146
|
async clearAllStatusFilters() {
|
|
@@ -8468,8 +8468,8 @@ class $8b6ce149dd48e48b$export$7e1d435fa474ee21 extends (0, $f8721861c660dd88$ex
|
|
|
8468
8468
|
await this.page.goto(url);
|
|
8469
8469
|
}
|
|
8470
8470
|
async searchBy(criteria) {
|
|
8471
|
-
await this.page.locator("
|
|
8472
|
-
await this.page.locator("
|
|
8471
|
+
await this.page.locator("input#title-filter").clear();
|
|
8472
|
+
await this.page.locator("input#title-filter").fill(criteria);
|
|
8473
8473
|
}
|
|
8474
8474
|
async copy(originTitle, targetTitle) {
|
|
8475
8475
|
await this.page.locator(".title").filter({
|
|
@@ -8596,15 +8596,7 @@ class $8b6ce149dd48e48b$export$7e1d435fa474ee21 extends (0, $f8721861c660dd88$ex
|
|
|
8596
8596
|
await (0, $kKeXs$playwrighttest.expect)(this.page.getByLabel("breadcrumb").getByText("Flow")).toBeVisible();
|
|
8597
8597
|
}
|
|
8598
8598
|
async filterByTitle(templateName) {
|
|
8599
|
-
await this.
|
|
8600
|
-
exact: true
|
|
8601
|
-
}).click();
|
|
8602
|
-
await this.page.getByPlaceholder("Filter by title...", {
|
|
8603
|
-
exact: true
|
|
8604
|
-
}).fill(templateName);
|
|
8605
|
-
await this.page.getByPlaceholder("Filter by title...", {
|
|
8606
|
-
exact: true
|
|
8607
|
-
}).press("Enter");
|
|
8599
|
+
await this.searchBy(templateName);
|
|
8608
8600
|
}
|
|
8609
8601
|
}
|
|
8610
8602
|
|