/// import IBrowserSettings from '../types/IBrowserSettings.js'; import DetachedBrowserContext from './DetachedBrowserContext.js'; import IOptionalBrowserSettings from '../types/IOptionalBrowserSettings.js'; import DetachedBrowserPage from './DetachedBrowserPage.js'; import IBrowser from '../types/IBrowser.js'; import IBrowserFrame from '../types/IBrowserFrame.js'; import IBrowserWindow from '../../window/IBrowserWindow.js'; /** * Detached browser used when constructing a Window instance without a browser. * * Much of the interface for the browser has been taken from Puppeteer and Playwright, so that the API is familiar. */ export default class DetachedBrowser implements IBrowser { readonly contexts: DetachedBrowserContext[]; readonly settings: IBrowserSettings; readonly console: Console | null; readonly windowClass: new (browserFrame: IBrowserFrame, options?: { url?: string; width?: number; height?: number; }) => IBrowserWindow | null; /** * Constructor. * * @param windowClass Window class. * @param [options] Options. * @param [options.settings] Browser settings. * @param [options.console] Console. */ constructor(windowClass: new (browserFrame: IBrowserFrame, options?: { url?: string; width?: number; height?: number; }) => IBrowserWindow, options?: { settings?: IOptionalBrowserSettings; console?: Console; }); /** * Returns the default context. * * @returns Default context. */ get defaultContext(): DetachedBrowserContext; /** * Aborts all ongoing operations and destroys the browser. */ close(): Promise; /** * Returns a promise that is resolved when all resources has been loaded, fetch has completed, and all async tasks such as timers are complete. * * @returns Promise. */ waitUntilComplete(): Promise; /** * Aborts all ongoing operations. */ abort(): Promise; /** * Creates a new incognito context. */ newIncognitoContext(): DetachedBrowserContext; /** * Creates a new page. * * @returns Page. */ newPage(): DetachedBrowserPage; } //# sourceMappingURL=DetachedBrowser.d.ts.map