* Gets a `HarnessPredicate` that can be used to search for a `ToolbarHarness` * that meets certain criteria. * @param options Options for filtering which dialog instances are considered a match. * @return a `HarnessPredicate` configured with the given options.
(options: ToolbarHarnessFilters = {})
| 26 | * @return a `HarnessPredicate` configured with the given options. |
| 27 | */ |
| 28 | static with(options: ToolbarHarnessFilters = {}): HarnessPredicate<ToolbarHarness> { |
| 29 | return new HarnessPredicate(ToolbarHarness, options); |
| 30 | } |
| 31 | |
| 32 | /** Gets all widgets in the toolbar. */ |
| 33 | async getWidgets(filters: ToolbarWidgetHarnessFilters = {}): Promise<ToolbarWidgetHarness[]> { |
no outgoing calls
no test coverage detected