@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) • 696 B
TypeScript
import { PageObject } from '../../../page';
import { Password } from './password';
/**
*
*
* @export
* @class SelectWallets
* @extends {PageObject}
*/
export declare class SelectWallets extends PageObject {
private activeWalletButton;
private continueButton;
/**
* Creates an instance of SelectWallets.
* @memberof SelectWallets
*/
constructor();
/**
*
*
* @param {number} index
* @return {*} {Promise<void>}
* @memberof SelectWallets
*/
selectWallet(index: number): Promise<void>;
/**
*
*
* @return {*} {Promise<Password>}
* @memberof SelectWallets
*/
continue(): Promise<Password>;
}