webdriver-js-extender
Version:
A plugin which adds additional commands to selenium's javascript implementation of the webdriver client side API
11 lines (10 loc) • 433 B
TypeScript
import { promise as wdpromise } from 'selenium-webdriver';
export declare class DeferredExecutor {
execute: (command: any) => wdpromise.Promise<any>;
defineCommand: (name: string, method: string, path: string) => void;
/**
* @param {!Promise<Executor>} delegate The promised delegate, which
* may be provided by any promise-like thenable object.
*/
constructor(delegate: wdpromise.Promise<any>);
}