UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

17 lines 712 B
import { MatSelectProfile } from '../../angular-materials'; import { O3rElement, PlaywrightSourceElement } from '../element'; /** * Implementation dedicated to Playwright. */ export declare class MatSelect extends O3rElement implements MatSelectProfile { constructor(sourceElement: PlaywrightSourceElement | 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<string | undefined>; } //# sourceMappingURL=select-material.d.ts.map