UNPKG

@atomic-testing/component-driver-html

Version:
8 lines (7 loc) 463 B
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; }