@digital-ai/devops-page-object-release 0.0.118 → 0.0.119

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.119
4
+
5
+ ### Patch Changes
6
+
7
+ - 1132974: S-126992 : Creating Filters page object on Tasks Page
8
+
3
9
  ## 0.0.118
4
10
 
5
11
  ### Patch Changes
package/dist/main.js CHANGED
@@ -8318,6 +8318,27 @@ class $ed2d4739e27d43c1$var$GridView extends (0, $f8721861c660dd88$export$2b65d1
8318
8318
 
8319
8319
 
8320
8320
 
8321
+ class $db2e2b6934b3964a$export$fe3c0fe772b75218 extends (0, $f8721861c660dd88$export$2b65d1d97338f32b) {
8322
+ constructor(page){
8323
+ super(page);
8324
+ this.filtersButton = this.page.getByTestId('filter-button');
8325
+ this.myTasksRadio = this.page.locator('input[type="radio"][name="assignedTo"][value="assignedToMe"]');
8326
+ }
8327
+ async goToTasksPage() {
8328
+ await this.page.locator('ul.side-nav li').getByLabel('Tasks', {
8329
+ exact: true
8330
+ }).click();
8331
+ }
8332
+ async clickFiltersButton() {
8333
+ await this.filtersButton.click();
8334
+ }
8335
+ async clickMyTasks() {
8336
+ await this.myTasksRadio.click();
8337
+ }
8338
+ }
8339
+
8340
+
8341
+
8321
8342
 
8322
8343
 
8323
8344
 
@@ -10305,6 +10326,7 @@ class $4ef41cf96a5fae4c$export$b8a61e5c71402559 {
10305
10326
  this.applicationPage = new (0, $dc91ece6da6cadfa$export$1533b625ec0c75e2)(page);
10306
10327
  this.taskDetailsPage = new (0, $a642d735048996f9$export$922081b54f2ab994)(page);
10307
10328
  this.taskListPage = new (0, $ed2d4739e27d43c1$export$60c3bfa6385e2a10)(page);
10329
+ this.taskFilterPage = new (0, $db2e2b6934b3964a$export$fe3c0fe772b75218)(page);
10308
10330
  this.templatePage = new (0, $959d38250779aa22$export$8c8e7207254accc2)(page);
10309
10331
  this.templateListPage = new (0, $8b6ce149dd48e48b$export$7e1d435fa474ee21)(page);
10310
10332
  this.personalSettingsPage = new (0, $010122e1d9b28b80$export$3cf9c90f870f31bd)(page);
@@ -10480,6 +10502,10 @@ class $4ef41cf96a5fae4c$export$b8a61e5c71402559 {
10480
10502
  await this.page.goto('#/task-access');
10481
10503
  return new (0, $267ea1f27d28a032$export$8da2fa93430be6ca)(this.page);
10482
10504
  }
10505
+ async gotoTaskFilterPage() {
10506
+ await this.page.goto('#/task-filter');
10507
+ return new (0, $db2e2b6934b3964a$export$fe3c0fe772b75218)(this.page);
10508
+ }
10483
10509
  }
10484
10510
 
10485
10511