mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-3256] Automation test for search by '%' (#4049)
This commit is contained in:
committed by
Eugenio Romano
parent
087d56ae22
commit
8d22d597c9
@@ -22,6 +22,7 @@ import { SearchDialog } from '../pages/adf/dialog/searchDialog';
|
||||
import { ContentServicesPage } from '../pages/adf/contentServicesPage';
|
||||
import { FilePreviewPage } from '../pages/adf/filePreviewPage';
|
||||
import { SearchResultsPage } from '../pages/adf/searchResultsPage';
|
||||
import { SearchFiltersPage } from '../../pages/adf/searchFiltersPage';
|
||||
|
||||
import { AcsUserModel } from '../models/ACS/acsUserModel';
|
||||
import { FileModel } from '../models/ACS/fileModel';
|
||||
@@ -49,6 +50,7 @@ xdescribe('Search component - Search Bar', () => {
|
||||
let searchDialog = new SearchDialog();
|
||||
let searchResultPage = new SearchResultsPage();
|
||||
let filePreviewPage = new FilePreviewPage();
|
||||
const searchFilters = new SearchFiltersPage();
|
||||
|
||||
let acsUser = new AcsUserModel();
|
||||
|
||||
@@ -297,4 +299,11 @@ xdescribe('Search component - Search Bar', () => {
|
||||
browser.sleep(500);
|
||||
searchDialog.checkSearchBarIsNotVisible().checkSearchIconIsVisible();
|
||||
});
|
||||
|
||||
it('[C290137] Should be able to search by \'%\'', () => {
|
||||
searchDialog
|
||||
.clickOnSearchIcon()
|
||||
.enterTextAndPressEnter('%');
|
||||
searchResultPage.tableIsLoaded();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user