cabbie-sync
Version:
A synchronous webdriver client
26 lines (25 loc) • 600 B
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
export type TimeOutType = 'script' | 'async' | 'page load' | 'implicit';
const TimeOutTypeEnum = {
/*
* Synchronous script execution timeout
*/
SCRIPT: ('script': 'script'),
/*
* Asynchronous script execution timeout
*/
ASYNC_SCRIPT: ('async': 'async'),
/*
* Page load timeout
*/
PAGE_LOAD: ('page load': 'page load'),
/*
* Implicit wait timeout.
* Implicit waits are applied for all requests.
*/
IMPLICIT: ('implicit': 'implicit')
};
export default TimeOutTypeEnum;