@assert-equals/dappdriver
Version:
DappDriver is an e2e testing framework designed for testing decentralized applications (dApps) using MetaMask, Rainbow or Zerion
35 lines (34 loc) • 833 B
TypeScript
import { PageObject } from '../../../page';
import { CreatePassword } from './create-password';
/**
*
*
* @export
* @class ImportWithRecoveryPhrase
* @extends {PageObject}
*/
export declare class ImportWithRecoveryPhrase extends PageObject {
private get srpTextarea();
private readonly srpInput;
private get confirmButton();
/**
* Creates an instance of ImportWithRecoveryPhrase.
* @memberof ImportWithRecoveryPhrase
*/
constructor();
/**
*
*
* @param {string} srp
* @return {*} {Promise<void>}
* @memberof ImportWithRecoveryPhrase
*/
enterSRP(srp: string): Promise<void>;
/**
*
*
* @return {*} {Promise<CreatePassword>}
* @memberof ImportWithRecoveryPhrase
*/
confirmSecretRecoveryPhrase(): Promise<CreatePassword>;
}