UNPKG

@assert-equals/dappdriver

Version:

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

26 lines (25 loc) 537 B
import { PageObject } from '../../../page'; import { Password } from './password'; /** * * * @export * @class SelectWallets * @extends {PageObject} */ export declare class SelectWallets extends PageObject { private readonly activeWalletButton; private get continueButton(); /** * Creates an instance of SelectWallets. * @memberof SelectWallets */ constructor(); /** * * * @return {*} {Promise<Password>} * @memberof SelectWallets */ continue(): Promise<Password>; }