flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
10 lines (9 loc) • 400 B
TypeScript
import { DOMElement } from "./domelement";
import { iResponse, ResponseType } from "./response";
import { BrowserResponse } from './browserresponse';
export declare class ExtJSResponse extends BrowserResponse implements iResponse {
readonly typeName: string;
readonly type: ResponseType;
find(path: string): Promise<DOMElement | null>;
findAll(path: string): Promise<DOMElement[]>;
}