cabbie-sync
Version:
A synchronous webdriver client
58 lines (54 loc) • 1.49 kB
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/'use strict';
// This file lists the status values that can be returned
// along with their name/meaning.
//
// source: https://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
//////////////////
// Enumerations //
//////////////////
/*
* List of errors
*
* @type {Object}
*/
export const names = {
'6': 'NoSuchDriver',
'7': 'NoSuchElement',
'8': 'NoSuchFrame',
'9': 'UnknownCommand',
'10': 'StaleElementReference',
'11': 'ElementNotVisible',
'12': 'InvalidElementState',
'13': 'UnknownError',
'15': 'ElementIsNotSelectable',
'17': 'JavaScriptError',
'19': 'XPathLookupError',
'21': 'Timeout',
'23': 'NoSuchWindow',
'24': 'InvalidCookieDomain',
'25': 'UnableToSetCookie',
'26': 'UnexpectedAlertOpen',
'27': 'NoAlertOpenError',
'28': 'ScriptTimeout',
'30': 'IMENotAvailable',
'31': 'IMEEngineActivationFailed',
'32': 'InvalidSelector',
'33': 'SessionNotCreatedException',
'34': 'MoveTargetOutOfBounds'
};
////////////////////
// Public Methods //
////////////////////
/*
* Extracts the error message from a response body
*/
export function fromBody(body: Object): Error {
const msg = body.value && body.value.message ? body.value.message : body.value;
const err = new Error(msg);
err.name = names[body.status] || 'UnknownSeleniumError';
(err: any).code = names[body.status] || 'UnknownSeleniumError';
return err;
}