flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
11 lines (10 loc) • 476 B
TypeScript
import { ResponseType } from "./enums";
import { iResponse } from "./interfaces";
import { PuppeteerResponse } from './puppeteerresponse';
import { PuppeteerElement } from './puppeteerelement';
export declare class BrowserResponse extends PuppeteerResponse implements iResponse {
readonly responseTypeName: string;
readonly responseType: ResponseType;
find(path: string): Promise<PuppeteerElement | null>;
findAll(path: string): Promise<PuppeteerElement[]>;
}