UNPKG

flagpole

Version:

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

16 lines (15 loc) 707 B
import { ExtJsComponent } from "./extjscomponent"; import { ResponseType } from "./enums"; import { iResponse, iScenario } from "./interfaces"; import { PuppeteerResponse } from "./puppeteerresponse"; import { iValue } from "."; export declare class ExtJSResponse extends PuppeteerResponse implements iResponse { get responseTypeName(): string; get responseType(): ResponseType; constructor(scenario: iScenario); find(path: string): Promise<ExtJsComponent | iValue>; findAll(path: string): Promise<ExtJsComponent[]>; waitForReady(timeout?: number): Promise<void>; type(selector: string, textToType: string, opts?: any): Promise<any>; clear(selector: string): Promise<any>; }