UNPKG

@assert-equals/dappdriver

Version:

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

43 lines (42 loc) 998 B
import { PageObject } from '../../../page'; import { Completion } from './completion'; /** * * * @export * @class ConfirmRecoveryPhrase * @extends {PageObject} */ export declare class ConfirmRecoveryPhrase extends PageObject { private chipInput; private confirmButton; /** * Creates an instance of ConfirmRecoveryPhrase. * @memberof ConfirmRecoveryPhrase */ constructor(); /** * * * @param {number} index * @param {Array<string>} words * @return {*} {Promise<void>} * @memberof ConfirmRecoveryPhrase */ enterWord(index: number, words: Array<string>): Promise<void>; /** * * * @param {Array<string>} words * @return {*} {Promise<void>} * @memberof ConfirmRecoveryPhrase */ enterRequiredWords(words: Array<string>): Promise<void>; /** * * * @return {*} {Promise<Completion>} * @memberof ConfirmRecoveryPhrase */ confirm(): Promise<Completion>; }