flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
21 lines (20 loc) • 572 B
TypeScript
import { iAssertionContext } from "./interfaces";
export declare class Link {
protected _context: iAssertionContext;
protected _uri: string;
protected _qs: any;
constructor(uri: string, context: iAssertionContext);
getUri(): string;
setQueryString(qs: any): void;
isValidDataUri(): boolean;
isData(): boolean;
isAnchor(): boolean;
isEmail(): boolean;
isPhone(): boolean;
isTextMessage(): boolean;
isGeo(): boolean;
isScript(): boolean;
isAppStore(): boolean;
isFtp(): boolean;
isNavigation(): boolean;
}