Opens the select's panel.
()
| 118 | |
| 119 | /** Opens the select's panel. */ |
| 120 | async open(): Promise<void> { |
| 121 | if (!(await this.isOpen())) { |
| 122 | const trigger = await this.locatorFor(`.${this._prefix}-select-trigger`)(); |
| 123 | return trigger.click(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Clicks the options that match the passed-in filter. If the select is in multi-selection |
no test coverage detected