UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

8 lines (7 loc) 412 B
import { DOMElement } from "./domelement"; import { ProtoResponse } from "./response"; import { iResponse } from './interfaces'; export declare abstract class DOMResponse extends ProtoResponse implements iResponse { findAllHavingText(selector: string, searchForText: string | RegExp): Promise<DOMElement[]>; findHavingText(selector: string, searchForText: string | RegExp): Promise<DOMElement | null>; }