Gets whether the select is open.
()
| 113 | |
| 114 | /** Gets whether the select is open. */ |
| 115 | async isOpen(): Promise<boolean> { |
| 116 | return !!(await this._documentRootLocator.locatorForOptional(await this._getPanelSelector())()); |
| 117 | } |
| 118 | |
| 119 | /** Opens the select's panel. */ |
| 120 | async open(): Promise<void> { |
no test coverage detected