@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
15 lines • 552 B
TypeScript
import { RadioElementProfile } from '../../elements';
import { O3rElement, PlaywrightSourceElement } from '../element';
/**
* Implementation dedicated to Playwright.
*/
export declare class O3rRadioElement extends O3rElement implements RadioElementProfile {
constructor(sourceElement: PlaywrightSourceElement | O3rElement);
/** @inheritDoc */
check(value?: boolean): Promise<void>;
/** @inheritDoc */
uncheck(): Promise<void>;
/** @inheritDoc */
isChecked(): Promise<boolean>;
}
//# sourceMappingURL=radio-element.d.ts.map