Whether the menu is open.
()
| 53 | |
| 54 | /** Whether the menu is open. */ |
| 55 | async isOpen(): Promise<boolean> { |
| 56 | return !!(await this._getMenuPanel()); |
| 57 | } |
| 58 | |
| 59 | /** Gets the text of the menu's trigger element. */ |
| 60 | async getTriggerText(): Promise<string> { |
no test coverage detected