UNPKG

@neuralegion/cypress-har-generator

Version:

The Cypress plugin for generating HTTP Archive (HAR) files is a tool that allows developers and QA engineers to capture detailed information about network requests made during the execution of Cypress tests.

13 lines (12 loc) 565 B
import type { HarExporterFactory, HarExporterOptions } from './HarExporterFactory'; import type { HarExporter } from './HarExporter'; import type { FileManager } from '../utils/FileManager'; import type { Logger } from '../utils/Logger'; export declare class DefaultHarExporterFactory implements HarExporterFactory { private readonly fileManager; private readonly logger; constructor(fileManager: FileManager, logger: Logger); create(options: HarExporterOptions): Promise<HarExporter>; private createSettings; private loadCustomProcessor; }