UNPKG

@assert-equals/dappdriver

Version:

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

21 lines (20 loc) 559 B
import { HTMLElement } from '../../controls/html-element'; import { IConfirmation } from '../../interface/wallet/confirmation'; import { ConfirmTransaction } from './confirm-transaction'; /** * * * @export * @class Send * @extends {ConfirmTransaction} * @implements {IConfirmation} */ export declare class Send extends ConfirmTransaction implements IConfirmation { protected nextButton: () => HTMLElement; protected cancelButton: () => HTMLElement; /** * Creates an instance of Send. * @memberof Send */ constructor(); }