accessibility-checker
Version:
An automated testing tools for accessibility testing using Puppeteer, Selenium, or Zombie
23 lines (22 loc) • 808 B
TypeScript
import { IConfigInternal } from "./common/config/IConfig.js";
export declare class ACBrowserManager {
static browserP: any;
static config: IConfigInternal;
static numInits: 0;
static pages: any[];
static getBrowserChrome(force: boolean): Promise<any>;
static close(): Promise<void>;
/**
* This function is responsible for building an iframe object with the provided URL or local file.
*
* @param {String} URLorLocalFile - Provide a URL or local file to scan.
*
* @return {Object} content - return an object which contains the iframeDoc and also the URL or
* local file name.
*
* PRIVATE METHOD
*
* @memberOf this
*/
static buildIframeAndGetDoc(URLorLocalFileorContent: any): Promise<any>;
}