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) 854 B
import { PageObject } from '../../../page'; import { Success } from './success'; /** * * * @export * @class Verify * @extends {PageObject} */ export declare class Verify extends PageObject { private wordInput; private verifyButton; /** * Creates an instance of Verify. * @memberof Verify */ constructor(); /** * * * @param {number} index * @param {string} word * @return {*} {Promise<void>} * @memberof Verify */ enterWord(index: number, word: string): Promise<void>; /** * * * @param {Array<string>} words * @return {*} {Promise<void>} * @memberof Verify */ enterSeed(words: Array<string>): Promise<void>; /** * * * @return {*} {Promise<Success>} * @memberof Verify */ verify(): Promise<Success>; }