@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/dist/module.js CHANGED
@@ -7384,6 +7384,27 @@ class $c37c93912f458e81$var$GridView extends (0, $9626bc9256ce31f7$export$2b65d1
7384
7384
 
7385
7385
 
7386
7386
 
7387
+ class $c18b3da3bfcf7e62$export$fe3c0fe772b75218 extends (0, $9626bc9256ce31f7$export$2b65d1d97338f32b) {
7388
+ constructor(page){
7389
+ super(page);
7390
+ this.filtersButton = this.page.getByTestId('filter-button');
7391
+ this.myTasksRadio = this.page.locator('input[type="radio"][name="assignedTo"][value="assignedToMe"]');
7392
+ }
7393
+ async goToTasksPage() {
7394
+ await this.page.locator('ul.side-nav li').getByLabel('Tasks', {
7395
+ exact: true
7396
+ }).click();
7397
+ }
7398
+ async clickFiltersButton() {
7399
+ await this.filtersButton.click();
7400
+ }
7401
+ async clickMyTasks() {
7402
+ await this.myTasksRadio.click();
7403
+ }
7404
+ }
7405
+
7406
+
7407
+
7387
7408
 
7388
7409
 
7389
7410
 
@@ -9371,6 +9392,7 @@ class $e72552cbf941ecfa$export$b8a61e5c71402559 {
9371
9392
  this.applicationPage = new (0, $c313b10398604df2$export$1533b625ec0c75e2)(page);
9372
9393
  this.taskDetailsPage = new (0, $9ca6e63d357957dd$export$922081b54f2ab994)(page);
9373
9394
  this.taskListPage = new (0, $c37c93912f458e81$export$60c3bfa6385e2a10)(page);
9395
+ this.taskFilterPage = new (0, $c18b3da3bfcf7e62$export$fe3c0fe772b75218)(page);
9374
9396
  this.templatePage = new (0, $0c4084f199d70d72$export$8c8e7207254accc2)(page);
9375
9397
  this.templateListPage = new (0, $171d52b372748c0b$export$7e1d435fa474ee21)(page);
9376
9398
  this.personalSettingsPage = new (0, $a5932af323ac015a$export$3cf9c90f870f31bd)(page);
@@ -9546,6 +9568,10 @@ class $e72552cbf941ecfa$export$b8a61e5c71402559 {
9546
9568
  await this.page.goto('#/task-access');
9547
9569
  return new (0, $2c3301798e261060$export$8da2fa93430be6ca)(this.page);
9548
9570
  }
9571
+ async gotoTaskFilterPage() {
9572
+ await this.page.goto('#/task-filter');
9573
+ return new (0, $c18b3da3bfcf7e62$export$fe3c0fe772b75218)(this.page);
9574
+ }
9549
9575
  }
9550
9576
 
9551
9577