UNPKG

@o3r/testing

Version:

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

15 lines 639 B
import { ElementFinder } from 'protractor'; import { SelectElementProfile } from '../../elements'; import { O3rElement } from '../element'; /** * Implementation dedicated to Protractor. * @deprecated Will be removed in v13, please use Playwright instead */ export declare class O3rSelectElement extends O3rElement implements SelectElementProfile { constructor(sourceElement: ElementFinder | O3rElement); /** @inheritdoc */ selectByIndex(index: number, _timeout?: number): Promise<void>; /** @inheritdoc */ selectByValue(value: string, _timeout?: number): Promise<void>; } //# sourceMappingURL=select-element.d.ts.map