mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-25 18:38:55 +00:00
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
/**
|
|
* Page constant for typeahead input on the search bar
|
|
*/
|
|
export const searchBarSelector = '.nacho-global-search__text-input input';
|
|
|
|
/**
|
|
* Page constant for entity select in search
|
|
*/
|
|
export const searchEntitySelector = '.nacho-global-search__entity-select select';
|
|
|
|
/**
|
|
* Page constant for search button
|
|
*/
|
|
export const searchButton = '.nacho-global-search button.nacho-global-search__button';
|
|
|
|
/**
|
|
* Page constant for search suggestions
|
|
*/
|
|
export const searchSuggestions = '.nacho-global-search .tt-menu';
|