@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
18 lines • 717 B
TypeScript
import { DebugElement } from '@angular/core';
import { MatSelectProfile } from '../../angular-materials';
import { O3rElement } from '../element';
/**
* Implementation dedicated to angular / TestBed.
*/
export declare class MatSelect extends O3rElement implements MatSelectProfile {
constructor(sourceElement: DebugElement | O3rElement);
/** @inheritdoc */
selectByIndex(index: number, _timeout?: number): Promise<void>;
/** @inheritdoc */
selectByValue(value: string, _timeout?: number): Promise<void>;
/** @inheritdoc */
selectByLabel(label: string, _timeout?: number): Promise<void>;
/** @inheritDoc */
getValue(): Promise<any>;
}
//# sourceMappingURL=select-material.d.ts.map