UNPKG

@o3r/testing

Version:

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

14 lines 538 B
import { O3rElement, PlaywrightSourceElement } from '../element'; /** * Implementation dedicated to Playwright. */ export declare class O3rSelectElement extends O3rElement { constructor(sourceElement: PlaywrightSourceElement | O3rElement); /** @inheritdoc */ selectByIndex(index: number, _timeout?: number): Promise<string[]>; /** @inheritdoc */ selectByValue(value: string, _timeout?: number): Promise<string[]>; /** @inheritDoc */ getValue(): Promise<string>; } //# sourceMappingURL=select-element.d.ts.map