e2ed
Version:
E2E testing framework over Playwright
6 lines (5 loc) • 377 B
TypeScript
import type { MapOptions, NavigateToUrlOptions, NavigationReturn, Url } from '../types/internal';
/**
* Navigates to the `url` and map custom response and request headers.
*/
export declare const setHeadersAndNavigateToUrl: (url: Url, { mapRequestHeaders, mapResponseHeaders, skipLogs }: MapOptions, navigateToUrlOptions?: NavigateToUrlOptions) => Promise<NavigationReturn>;