flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
17 lines (16 loc) • 637 B
TypeScript
import { ProtoResponse } from "../response";
import { iResponse } from "../interfaces";
import { HttpResponse } from "../httpresponse";
import { CSSRule } from "./cssrule";
import { ValuePromise } from "../value-promise";
import { ScenarioType } from "../scenario-types";
export declare class CssResponse extends ProtoResponse implements iResponse {
protected css: any;
get responseTypeName(): string;
get responseType(): ScenarioType;
init(httpResponse: HttpResponse): void;
eval(): Promise<any>;
find(path: string): ValuePromise;
findAll(path: string): Promise<CSSRule[]>;
protected validate(): void;
}