@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
16 lines • 599 B
TypeScript
import { DebugElement } from '@angular/core';
import { CheckboxElementProfile } from '../../elements';
import { O3rElement } from '../element';
/**
* Implementation dedicated to angular / TestBed.
*/
export declare class O3rCheckboxElement extends O3rElement implements CheckboxElementProfile {
constructor(sourceElement: DebugElement);
/** @inheritDoc */
check(value?: boolean, _associatedLabel?: O3rElement): Promise<void>;
/** @inheritDoc */
uncheck(): Promise<void>;
/** @inheritDoc */
isChecked(): Promise<boolean>;
}
//# sourceMappingURL=checkbox-element.d.ts.map