@coinbase/onchaintestkit
Version:
End-to-end testing toolkit for blockchain applications, powered by Playwright
12 lines (11 loc) • 394 B
TypeScript
import { Page } from "@playwright/test";
export declare class OnboardingPage {
private readonly page;
constructor(page: Page);
/**
* Imports a wallet using a seed phrase and password
* @param seedPhrase - The seed phrase to import
* @param password - The password to set for the wallet
*/
importWallet(seedPhrase: string, password: string): Promise<void>;
}