UNPKG

cerevox

Version:

TypeScript SDK for browser automation and secure command execution in highly available and scalable micro computer environments

29 lines 1.14 kB
import { BaseClass } from './base'; import { Session } from './session'; export declare class Browser extends BaseClass { private connectionMetaData; private session; constructor(session: Session); getCDPEndpoint(): Promise<any>; /** * @experimental This method is experimental and may change or be removed in future versions. * Use with caution in production environments. */ getCurrentPageTargetInfo(): Promise<any>; /** * @experimental This method is experimental and may change or be removed in future versions. * Use with caution in production environments. */ getLiveviewStreamingUrl(): Promise<string | null>; /** * @experimental This method is experimental and may change or be removed in future versions. * Use with caution in production environments. */ getLiveviewPageUrl(): Promise<string | null>; /** * @experimental This method is experimental and may change or be removed in future versions. * Use with caution in production environments. */ openLiveviewPage(): Promise<void>; } //# sourceMappingURL=browser.d.ts.map