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.

9 lines (8 loc) 415 B
import type { ConnectionFactory, ConnectionOptions } from './ConnectionFactory'; import type { Connection } from './Connection'; import { Logger } from '../utils/Logger'; export declare class DefaultConnectionFactory implements ConnectionFactory { private readonly logger; constructor(logger: Logger); create({ maxRetries, initialBackoff, maximumBackoff, ...options }: ConnectionOptions): Connection; }