annotate vendor/instaclick/php-webdriver/lib/WebDriver/Exception.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
rev   line source
Chris@0 1 <?php
Chris@0 2 /**
Chris@0 3 * Copyright 2004-2017 Facebook. All Rights Reserved.
Chris@0 4 *
Chris@0 5 * Licensed under the Apache License, Version 2.0 (the "License");
Chris@0 6 * you may not use this file except in compliance with the License.
Chris@0 7 * You may obtain a copy of the License at
Chris@0 8 *
Chris@0 9 * http://www.apache.org/licenses/LICENSE-2.0
Chris@0 10 *
Chris@0 11 * Unless required by applicable law or agreed to in writing, software
Chris@0 12 * distributed under the License is distributed on an "AS IS" BASIS,
Chris@0 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Chris@0 14 * See the License for the specific language governing permissions and
Chris@0 15 * limitations under the License.
Chris@0 16 *
Chris@0 17 * @package WebDriver
Chris@0 18 *
Chris@0 19 * @author Justin Bishop <jubishop@gmail.com>
Chris@0 20 * @author Anthon Pang <apang@softwaredevelopment.ca>
Chris@0 21 */
Chris@0 22
Chris@0 23 namespace WebDriver;
Chris@0 24
Chris@0 25 /**
Chris@0 26 * WebDriver\Exception class
Chris@0 27 *
Chris@0 28 * @package WebDriver
Chris@0 29 */
Chris@0 30 abstract class Exception extends \Exception
Chris@0 31 {
Chris@0 32 /**
Chris@0 33 * Response status codes
Chris@0 34 *
Chris@0 35 * @link http://code.google.com/p/selenium/wiki/JsonWireProtocol#Response_Status_Codes
Chris@0 36 */
Chris@0 37 const SUCCESS = 0;
Chris@0 38 const NO_SUCH_DRIVER = 6;
Chris@0 39 const NO_SUCH_ELEMENT = 7;
Chris@0 40 const NO_SUCH_FRAME = 8;
Chris@0 41 const UNKNOWN_COMMAND = 9;
Chris@0 42 const STALE_ELEMENT_REFERENCE = 10;
Chris@0 43 const ELEMENT_NOT_VISIBLE = 11;
Chris@0 44 const INVALID_ELEMENT_STATE = 12;
Chris@0 45 const UNKNOWN_ERROR = 13;
Chris@0 46 const ELEMENT_IS_NOT_SELECTABLE = 15;
Chris@0 47 const JAVASCRIPT_ERROR = 17;
Chris@0 48 const XPATH_LOOKUP_ERROR = 19;
Chris@0 49 const TIMEOUT = 21;
Chris@0 50 const NO_SUCH_WINDOW = 23;
Chris@0 51 const INVALID_COOKIE_DOMAIN = 24;
Chris@0 52 const UNABLE_TO_SET_COOKIE = 25;
Chris@0 53 const UNEXPECTED_ALERT_OPEN = 26;
Chris@0 54 const NO_ALERT_OPEN_ERROR = 27;
Chris@0 55 const SCRIPT_TIMEOUT = 28;
Chris@0 56 const INVALID_ELEMENT_COORDINATES = 29;
Chris@0 57 const IME_NOT_AVAILABLE = 30;
Chris@0 58 const IME_ENGINE_ACTIVATION_FAILED = 31;
Chris@0 59 const INVALID_SELECTOR = 32;
Chris@0 60 const SESSION_NOT_CREATED = 33;
Chris@0 61 const MOVE_TARGET_OUT_OF_BOUNDS = 34;
Chris@0 62
Chris@0 63 // obsolete
Chris@0 64 const INDEX_OUT_OF_BOUNDS = 1;
Chris@0 65 const NO_COLLECTION = 2;
Chris@0 66 const NO_STRING = 3;
Chris@0 67 const NO_STRING_LENGTH = 4;
Chris@0 68 const NO_STRING_WRAPPER = 5;
Chris@0 69 const OBSOLETE_ELEMENT = 10;
Chris@0 70 const ELEMENT_NOT_DISPLAYED = 11;
Chris@0 71 const UNHANDLED = 13;
Chris@0 72 const EXPECTED = 14;
Chris@0 73 const ELEMENT_NOT_SELECTABLE = 15;
Chris@0 74 const NO_SUCH_DOCUMENT = 16;
Chris@0 75 const UNEXPECTED_JAVASCRIPT = 17;
Chris@0 76 const NO_SCRIPT_RESULT = 18;
Chris@0 77 const NO_SUCH_COLLECTION = 20;
Chris@0 78 const NULL_POINTER = 22;
Chris@0 79 const NO_MODAL_DIALOG_OPEN_ERROR = 27;
Chris@0 80
Chris@0 81 // user-defined
Chris@0 82 const CURL_EXEC = -1;
Chris@0 83 const OBSOLETE_COMMAND = -2;
Chris@0 84 const NO_PARAMETERS_EXPECTED = -3;
Chris@0 85 const JSON_PARAMETERS_EXPECTED = -4;
Chris@0 86 const UNEXPECTED_PARAMETERS = -5;
Chris@0 87 const INVALID_REQUEST = -6;
Chris@0 88 const UNKNOWN_LOCATOR_STRATEGY = -7;
Chris@0 89
Chris@0 90 private static $errs = array(
Chris@0 91 // self::SUCCESS => array('Success', 'This should never be thrown!'),
Chris@0 92
Chris@0 93 self::NO_SUCH_DRIVER => array('NoSuchDriver', 'A session is either terminated or not started'),
Chris@0 94 self::NO_SUCH_ELEMENT => array('NoSuchElement', 'An element could not be located on the page using the given search parameters.'),
Chris@0 95 self::NO_SUCH_FRAME => array('NoSuchFrame', 'A request to switch to a frame could not be satisfied because the frame could not be found.'),
Chris@0 96 self::UNKNOWN_COMMAND => array('UnknownCommand', 'The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource.'),
Chris@0 97 self::STALE_ELEMENT_REFERENCE => array('StaleElementReference', 'An element command failed because the referenced element is no longer attached to the DOM.'),
Chris@0 98 self::ELEMENT_NOT_VISIBLE => array('ElementNotVisible', 'An element command could not be completed because the element is not visible on the page.'),
Chris@0 99 self::INVALID_ELEMENT_STATE => array('InvalidElementState', 'An element command could not be completed because the element is in an invalid state (e.g., attempting to click a disabled element).'),
Chris@0 100 self::UNKNOWN_ERROR => array('UnknownError', 'An unknown server-side error occurred while processing the command.'),
Chris@0 101 self::ELEMENT_IS_NOT_SELECTABLE => array('ElementIsNotSelectable', 'An attempt was made to select an element that cannot be selected.'),
Chris@0 102 self::JAVASCRIPT_ERROR => array('JavaScriptError', 'An error occurred while executing user supplied JavaScript.'),
Chris@0 103 self::XPATH_LOOKUP_ERROR => array('XPathLookupError', 'An error occurred while searching for an element by XPath.'),
Chris@0 104 self::TIMEOUT => array('Timeout', 'An operation did not complete before its timeout expired.'),
Chris@0 105 self::NO_SUCH_WINDOW => array('NoSuchWindow', 'A request to switch to a different window could not be satisfied because the window could not be found.'),
Chris@0 106 self::INVALID_COOKIE_DOMAIN => array('InvalidCookieDomain', 'An illegal attempt was made to set a cookie under a different domain than the current page.'),
Chris@0 107 self::UNABLE_TO_SET_COOKIE => array('UnableToSetCookie', 'A request to set a cookie\'s value could not be satisfied.'),
Chris@0 108 self::UNEXPECTED_ALERT_OPEN => array('UnexpectedAlertOpen', 'A modal dialog was open, blocking this operation'),
Chris@0 109 self::NO_ALERT_OPEN_ERROR => array('NoAlertOpenError', 'An attempt was made to operate on a modal dialog when one was not open.'),
Chris@0 110 self::SCRIPT_TIMEOUT => array('ScriptTimeout', 'A script did not complete before its timeout expired.'),
Chris@0 111 self::INVALID_ELEMENT_COORDINATES => array('InvalidElementCoordinates', 'The coordinates provided to an interactions operation are invalid.'),
Chris@0 112 self::IME_NOT_AVAILABLE => array('IMENotAvailable', 'IME was not available.'),
Chris@0 113 self::IME_ENGINE_ACTIVATION_FAILED => array('IMEEngineActivationFailed', 'An IME engine could not be started.'),
Chris@0 114 self::INVALID_SELECTOR => array('InvalidSelector', 'Argument was an invalid selector (e.g., XPath/CSS).'),
Chris@0 115 self::SESSION_NOT_CREATED => array('SessionNotCreated', 'A new session could not be created (e.g., a required capability could not be set).'),
Chris@0 116 self::MOVE_TARGET_OUT_OF_BOUNDS => array('MoveTargetOutOfBounds', 'Target provided for a move action is out of bounds.'),
Chris@0 117
Chris@0 118 self::CURL_EXEC => array('CurlExec', 'curl_exec() error.'),
Chris@0 119 self::OBSOLETE_COMMAND => array('ObsoleteCommand', 'This WebDriver command is obsolete.'),
Chris@0 120 self::NO_PARAMETERS_EXPECTED => array('NoParametersExpected', 'This HTTP request method expects no parameters.'),
Chris@0 121 self::JSON_PARAMETERS_EXPECTED => array('JsonParameterExpected', 'This POST request expects a JSON parameter (array).'),
Chris@0 122 self::UNEXPECTED_PARAMETERS => array('UnexpectedParameters', 'This command does not expect this number of parameters.'),
Chris@0 123 self::INVALID_REQUEST => array('InvalidRequest', 'This command does not support this HTTP request method.'),
Chris@0 124 self::UNKNOWN_LOCATOR_STRATEGY => array('UnknownLocatorStrategy', 'This locator strategy is not supported.'),
Chris@0 125 );
Chris@0 126
Chris@0 127 /**
Chris@0 128 * Factory method to create WebDriver\Exception objects
Chris@0 129 *
Chris@0 130 * @param integer $code Code
Chris@0 131 * @param string $message Message
Chris@0 132 * @param \Exception $previousException Previous exception
Chris@0 133 *
Chris@0 134 * @return \Exception
Chris@0 135 */
Chris@0 136 public static function factory($code, $message = null, $previousException = null)
Chris@0 137 {
Chris@0 138 // unknown error
Chris@0 139 if (!isset(self::$errs[$code])) {
Chris@0 140 if (trim($message) === '') {
Chris@0 141 $message = 'Unknown Error';
Chris@0 142 }
Chris@0 143
Chris@0 144 return new \Exception($message, $code, $previousException);
Chris@0 145 }
Chris@0 146
Chris@0 147 $errorDefinition = self::$errs[$code];
Chris@0 148
Chris@0 149 if (trim($message) === '') {
Chris@0 150 $message = $errorDefinition[1];
Chris@0 151 }
Chris@0 152
Chris@0 153 $className = __CLASS__ . '\\' . $errorDefinition[0];
Chris@0 154
Chris@0 155 return new $className($message, $code, $previousException);
Chris@0 156 }
Chris@0 157 }