Gets the options inside the listbox.
(filters: ListboxOptionHarnessFilters = {})
| 103 | |
| 104 | /** Gets the options inside the listbox. */ |
| 105 | async getOptions(filters: ListboxOptionHarnessFilters = {}): Promise<ListboxOptionHarness[]> { |
| 106 | return this.locatorForAll(ListboxOptionHarness.with(filters))(); |
| 107 | } |
| 108 | |
| 109 | /** Focuses the listbox container. */ |
| 110 | async focus(): Promise<void> { |
no test coverage detected