1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { BaseHarnessFilters, ContentContainerComponentHarness, ComponentHarnessConstructor, HarnessPredicate } from '@angular/cdk/testing';
- /** A set of criteria that can be used to filter a list of `MatCardHarness` instances. */
- interface CardHarnessFilters extends BaseHarnessFilters {
- /** Only find instances whose text matches the given value. */
- text?: string | RegExp;
- /** Only find instances whose title matches the given value. */
- title?: string | RegExp;
- /** Only find instances whose subtitle matches the given value. */
- subtitle?: string | RegExp;
- }
- /** Selectors for different sections of the mat-card that can container user content. */
- declare enum MatCardSection {
- HEADER = ".mat-mdc-card-header",
- CONTENT = ".mat-mdc-card-content",
- ACTIONS = ".mat-mdc-card-actions",
- FOOTER = ".mat-mdc-card-footer"
- }
- /** Harness for interacting with a mat-card in tests. */
- declare class MatCardHarness extends ContentContainerComponentHarness<MatCardSection> {
- /** The selector for the host element of a `MatCard` instance. */
- static hostSelector: string;
- /**
- * Gets a `HarnessPredicate` that can be used to search for a card with specific attributes.
- * @param options Options for filtering which card instances are considered a match.
- * @return a `HarnessPredicate` configured with the given options.
- */
- static with<T extends MatCardHarness>(this: ComponentHarnessConstructor<T>, options?: CardHarnessFilters): HarnessPredicate<T>;
- private _title;
- private _subtitle;
- /** Gets all of the card's content as text. */
- getText(): Promise<string>;
- /** Gets the cards's title text. */
- getTitleText(): Promise<string>;
- /** Gets the cards's subtitle text. */
- getSubtitleText(): Promise<string>;
- }
- export { MatCardHarness, MatCardSection };
- export type { CardHarnessFilters };
|