mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
8a8d4e8bb3
Github issue / Community forum post (link here to close automatically):
16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
export function getPopper() {
|
|
return cy.get('.el-popper');
|
|
}
|
|
|
|
export function getVisiblePopper() {
|
|
return getPopper().filter(':visible');
|
|
}
|
|
|
|
export function getVisibleSelect() {
|
|
return getVisiblePopper().filter('.el-select__popper');
|
|
}
|
|
|
|
export function getVisibleDropdown() {
|
|
return getVisiblePopper().filter('.el-dropdown__popper');
|
|
}
|