blob: 240539419689e69d57f42798eaa8c02d90b6f4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Get the unified search modal (if open)
*/
export function getUnifiedSearchModal() {
return cy.get('#unified-search')
}
/**
* Open the unified search modal
*/
export function openUnifiedSearch() {
cy.get('button[aria-label="Unified search"]').click({ force: true })
// wait for it to be open
getUnifiedSearchModal().should('be.visible')
}
/**
* Close the unified search modal
*/
export function closeUnifiedSearch() {
getUnifiedSearchModal().find('button[aria-label="Close"]').click({ force: true })
getUnifiedSearchModal().should('not.be.visible')
}
/**
* Get the input field of the unified search
*/
export function getUnifiedSearchInput() {
return getUnifiedSearchModal().find('[data-cy-unified-search-input]')
}
export enum UnifiedSearchFilter {
FilterCurrentView = 'current-view',
Places = 'places',
People = 'people',
Date = 'date',
}
/**
* Get a filter action from the unified search
* @param filter The filter to get
*/
export function getUnifiedSearchFilter(filter: UnifiedSearchFilter) {
return getUnifiedSearchModal().find(`[data-cy-unified-search-filters] [data-cy-unified-search-filter="${CSS.escape(filter)}"]`)
}
|