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 664 B
import { ElementFinder } from 'protractor'; import { CheckboxElementProfile } from '../../elements'; import { O3rElement } from '../element'; /** * Implementation dedicated to karma / TestBed. * @deprecated Will be removed in v13, please use Playwright instead */ export declare class O3rCheckboxElement extends O3rElement implements CheckboxElementProfile { constructor(sourceElement: ElementFinder); /** @inheritDoc */ check(value?: boolean, associatedLabel?: O3rElement): Promise<void>; /** @inheritDoc */ uncheck(): Promise<void>; /** @inheritDoc */ isChecked(): Promise<boolean>; } //# sourceMappingURL=checkbox-element.d.ts.map