UNPKG

@assert-equals/dappdriver

Version:

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

34 lines (33 loc) 743 B
import { PageObject } from '../../../page'; import { SelectWallets } from './select-wallets'; /** * * * @export * @class RecoveryPhrase * @extends {PageObject} */ export declare class RecoveryPhrase extends PageObject { private readonly srpInput; private get importWalletButton(); /** * Creates an instance of RecoveryPhrase. * @memberof RecoveryPhrase */ constructor(); /** * * * @param {string} srp * @return {*} {Promise<void>} * @memberof RecoveryPhrase */ enterSRP(srp: string): Promise<void>; /** * * * @return {*} {Promise<SelectWallets>} * @memberof RecoveryPhrase */ confirmSecretRecoveryPhrase(): Promise<SelectWallets>; }