cypress-browser-permissions
Version:
A Cypress plugin package to handle setting common browser permissions like notifications, geolocation, images, and more
7 lines (6 loc) • 470 B
TypeScript
/// <reference types="cypress" />
import { BrowserPermissions } from './types';
export declare const PLUGIN_ENV_VAR = "browserPermissions";
export declare const PREFERENCES_ROOT_PATH_BY_FAMILY: Record<Cypress.BrowserFamily, string>;
export declare const PERMISSIONS_PREF_CONTAINER_BY_FAMILY: Record<Cypress.BrowserFamily, string>;
export declare const PERMISSIONS_PREF_NAME_BY_FAMILY: Record<Cypress.BrowserFamily, Record<keyof BrowserPermissions, string | undefined>>;