cabbie-sync
Version:
A synchronous webdriver client
10 lines (9 loc) • 325 B
TypeScript
export declare type TimeOutType = 'script' | 'async' | 'page load' | 'implicit';
export interface ITimeOutTypeEnum {
readonly SCRIPT: 'script';
readonly ASYNC_SCRIPT: 'async';
readonly PAGE_LOAD: 'page load';
readonly IMPLICIT: 'implicit';
}
declare const _default: ITimeOutTypeEnum;
export default _default;