mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
|
export function getVisiblePopper() {
|
||
|
return cy.get('.el-popper').filter(':visible');
|
||
|
}
|
||
|
|
||
|
export function getVisibleSelect() {
|
||
|
return getVisiblePopper().filter('.el-select__popper');
|
||
|
}
|
||
|
|
||
|
export function getVisibleDropdown() {
|
||
|
return getVisiblePopper().filter('.el-dropdown__popper');
|
||
|
}
|