@atomic-testing/component-driver-html
Version:
HTML component driver for atomic-testing
8 lines (7 loc) • 463 B
TypeScript
import { ComponentDriver, IComponentDriverOption, IInputDriver, Interactor, PartLocator } from '@atomic-testing/core';
export declare class HTMLHiddenInputDriver extends ComponentDriver<{}> implements IInputDriver<string | null> {
constructor(locator: PartLocator, interactor: Interactor, option?: Partial<IComponentDriverOption>);
getValue(): Promise<string | null>;
setValue(_value: string | null): Promise<boolean>;
get driverName(): string;
}