Gets all tabs inside the tabs container.
(filters: TabHarnessFilters = {})
| 93 | |
| 94 | /** Gets all tabs inside the tabs container. */ |
| 95 | async getTabs(filters: TabHarnessFilters = {}): Promise<TabHarness[]> { |
| 96 | return await this.locatorForAll(TabHarness.with(filters))(); |
| 97 | } |
| 98 | |
| 99 | /** Gets the currently selected tab. */ |
| 100 | async getSelectedTab(): Promise<TabHarness | null> { |
no test coverage detected