ADW Saved Search (#4173)

* [ACS-8751] Adapt search results to handle query encoding and state propagation

* ADW Saved Search

* ADW Saved Search

* Changes after CR, bug fixed

* Changes after CR, bug fixed

* Changes after CR, bug fixed

* Changes after CR, bug fixed

* Changes after CR, bug fixed

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* Changes after code review

* ACS-8751 fix e2e

* ACS-8751 fix e2e

* ACS-8751 fix e2e

* ACS-8751 fix e2e saved-search

* ACS-8751 fix e2e recent file

* ACS-8751 fix e2e recent file

* [ACS-8751] Change encoding from ascii to utf8 to handle special language characters

---------

Co-authored-by: MichalKinas <michal.kinas@hyland.com>
Co-authored-by: akash.rathod@hyland.com <akash.rathod@hyland.com>
This commit is contained in:
dominikiwanekhyland
2024-10-23 09:33:08 +02:00
committed by GitHub
parent b9213f345c
commit a7573dc933
37 changed files with 1161 additions and 323 deletions

View File

@@ -32,7 +32,7 @@ export class SearchOverlayComponent extends BaseComponent {
public searchFoldersOption = this.getChild('input#folder-input');
public searchLibrariesOption = this.getChild('input#libraries-input');
public searchInput = this.page.locator('#app-control-input');
public searchButton = this.page.locator('.aca-search-input--search-button');
public searchButton = this.page.locator('app-search-input-control button[title="Search"]');
public searchInputControl = this.page.locator('.app-search-control');
public searchOptions = this.page.locator('.app-search-options');

View File

@@ -72,7 +72,7 @@ export class SearchPage extends BasePage {
public uploadNewVersionDialog = new UploadNewVersionDialog(this.page);
public manageVersionsDialog = new ManageVersionsDialog(this.page);
async searchWithin(searchText: string, searchType: SearchType): Promise<void> {
async searchWithin(searchText: string, searchType?: SearchType): Promise<void> {
await this.acaHeader.searchButton.click();
await this.clickSearchButton();
switch (searchType) {