@assert-equals/dappdriver
Version:
DappDriver is an e2e testing framework designed for testing decentralized applications (dApps) using MetaMask, Rainbow or Zerion
40 lines (39 loc) • 752 B
TypeScript
import { PageObject } from '../../../page';
import { BackUp } from './backup';
/**
*
*
* @export
* @class Information
* @extends {PageObject}
*/
export declare class Information extends PageObject {
private continueButton;
private backUpNowButton;
/**
* Creates an instance of Information.
* @memberof Information
*/
constructor();
/**
*
*
* @return {*} {Promise<void>}
* @memberof Information
*/
stepOne(): Promise<void>;
/**
*
*
* @return {*} {Promise<void>}
* @memberof Information
*/
stepTwo(): Promise<void>;
/**
*
*
* @return {*} {Promise<BackUp>}
* @memberof Information
*/
backUpNow(): Promise<BackUp>;
}