UNPKG

@assert-equals/dappdriver

Version:

DappDriver is an e2e testing framework designed for testing decentralized applications (dApps) using MetaMask, Rainbow or Zerion

8 lines (7 loc) 327 B
import { ICheckBox } from '../interface/controls/check-box'; import { WebDriverHTMLElement } from './html-element'; export declare class WebDriverCheckBox extends WebDriverHTMLElement implements ICheckBox { constructor(cssLocator: string); isSelected(): Promise<boolean>; setValue(value: boolean): Promise<void>; }