[ACS-7337] [E2E] protractor to playwright e2e test suites search filters categories filter (#3798)

* [ACS-7337] [E2E] Search filters - categories - tests migrated in Playwright

* [ACS-7737] only deleted

* [ACS-7337] review fix 1

* [ACS-7337] review fix 2

* [ACS-7337] excluded test again

* [ACS-7337] review fix 3

* [ACS-7337] review fix 5

* [ACS-7337] review fix 6
This commit is contained in:
Adam Świderski
2024-04-17 15:22:26 +02:00
committed by GitHub
parent 7ce9e302de
commit 8fbc22b9d6
8 changed files with 176 additions and 12 deletions

View File

@@ -44,4 +44,5 @@ export class SearchFilters extends BaseComponent {
public menuCardClose = this.page.locator('.adf-search-filter-title-action');
public menuCardClear = this.page.locator('#cancel-filter-button');
public menuCardApply = this.page.locator('#apply-filter-button');
public dropdownOptions = this.page.locator(`mat-option`);
}

View File

@@ -36,5 +36,4 @@ export class SearchFiltersLogic extends BaseComponent {
public matchAnyInput = this.getChild(`[placeholder$='Results will match any words entered here']`);
public excludeInput = this.getChild(`[placeholder$='Results will exclude matches with these words']`);
public matchExactInput = this.getChild(`[placeholder$='Results will match this entire phrase']`);
public applyButton = this.page.locator('#apply-filter-button');
}