UNPKG

@atomic-testing/component-driver-html

Version:
9 lines (8 loc) 472 B
import { ClickOption, ComponentDriver, HoverOption, IClickableDriver, IMouseInteractableDriver, Optional } from '@atomic-testing/core'; export declare class HTMLAnchorDriver extends ComponentDriver<{}> implements IClickableDriver, IMouseInteractableDriver { click(option?: ClickOption): Promise<void>; hover(option?: HoverOption): Promise<void>; getHref(): Promise<Optional<string>>; getTarget(): Promise<Optional<string>>; get driverName(): string; }