UNPKG

testplane

Version:

Tests framework based on mocha and wdio

14 lines (13 loc) 582 B
import { StorageData } from "./dumpStorage"; import { ExistingBrowser } from "../../existing-browser"; import { Cookie } from "../../../types"; import type { Browser } from "../../types"; export type FrameData = StorageData; export type SaveStateData = { cookies?: Array<Cookie>; framesData: Record<string, FrameData>; }; export declare const isBidiWithIsolation: (browser: Browser) => boolean; export declare const getWebdriverFrames: (session: WebdriverIO.Browser) => Promise<string[]>; declare const _default: (browser: ExistingBrowser) => void; export default _default;