flagpole
Version:
Simple and fast DOM integration and REST API testing framework.
11 lines (10 loc) • 440 B
TypeScript
import { iResponse, GenericResponse, SimplifiedResponse, ResponseType } from "./response";
import { Scenario } from "./scenario";
import { Node } from "./node";
export declare class CssResponse extends GenericResponse implements iResponse {
protected css: any;
constructor(scenario: Scenario, url: string, response: SimplifiedResponse);
select(path: string): Node;
getType(): ResponseType;
protected validate(): void;
}