Gets all widgets in the toolbar.
(filters: ToolbarWidgetHarnessFilters = {})
| 31 | |
| 32 | /** Gets all widgets in the toolbar. */ |
| 33 | async getWidgets(filters: ToolbarWidgetHarnessFilters = {}): Promise<ToolbarWidgetHarness[]> { |
| 34 | return await this.locatorForAll(ToolbarWidgetHarness.with(filters))(); |
| 35 | } |
| 36 | |
| 37 | /** Gets all widget groups in the toolbar. */ |
| 38 | async getWidgetGroups( |
no test coverage detected