123456789101112131415161718192021222324252627282930313233 |
- import { BaseHarnessFilters, ContentContainerComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
- /** A set of criteria that can be used to filter a list of `MatToolbarHarness` instances. */
- interface ToolbarHarnessFilters extends BaseHarnessFilters {
- /** Only find instances whose text matches the given value. */
- text?: string | RegExp;
- }
- /** Selectors for different sections of the mat-toolbar that contain user content. */
- declare enum MatToolbarSection {
- ROW = ".mat-toolbar-row"
- }
- /** Harness for interacting with a standard mat-toolbar in tests. */
- declare class MatToolbarHarness extends ContentContainerComponentHarness<MatToolbarSection> {
- static hostSelector: string;
- private _getRows;
- /**
- * Gets a `HarnessPredicate` that can be used to search for a `MatToolbarHarness` that meets
- * certain criteria.
- * @param options Options for filtering which card instances are considered a match.
- * @return a `HarnessPredicate` configured with the given options.
- */
- static with(options?: ToolbarHarnessFilters): HarnessPredicate<MatToolbarHarness>;
- /** Whether the toolbar has multiple rows. */
- hasMultipleRows(): Promise<boolean>;
- /** Gets all of the toolbar's content as text. */
- private _getText;
- /** Gets the text of each row in the toolbar. */
- getRowsAsText(): Promise<string[]>;
- }
- export { MatToolbarHarness, MatToolbarSection };
- export type { ToolbarHarnessFilters };
|