FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/PHPWebDriver/WebDriverExceptions.php at master · drupalmind/php-webdriver · GitHub
drupalmind
/
php-webdriver
Public
forked from
Element-34/php-webdriver
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
php-webdriver
/
PHPWebDriver
/
WebDriverExceptions.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (62 loc) · 4.75 KB
Breadcrumbs
php-webdriver
/
PHPWebDriver
/
WebDriverExceptions.php
Copy path
File metadata and controls
65 lines (62 loc) · 4.75 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
// Copyright 2004-present Facebook. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
final
class
PHPWebDriver_WebDriverCurlException
extends
Exception {}
// When curls fail
abstract
class
PHPWebDriver_WebDriverException
extends
Exception {
private
$
results
;
public
function
__construct
(
$
message
,
$
results
=
null
) {
parent
::
__construct
(
$
message
);
$
this
->
results
=
$
results
;
}
public
function
getResults
() {
return
$
this
->
results
;
}
}
class
PHPWebDriver_IndexOutOfBoundsWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 1
class
PHPWebDriver_NoCollectionWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 2
class
PHPWebDriver_NoStringWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 3
class
PHPWebDriver_NoStringLengthWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 4
class
PHPWebDriver_NoStringWrapperWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 5
class
PHPWebDriver_NoSuchDriverWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 6
class
PHPWebDriver_NoSuchElementWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 7
class
PHPWebDriver_NoSuchFrameWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 8
class
PHPWebDriver_UnknownCommandWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 9
class
PHPWebDriver_ObsoleteElementWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 10
class
PHPWebDriver_ElementNotDisplayedWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 11
class
PHPWebDriver_InvalidElementStateWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 12
class
PHPWebDriver_UnhandledWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 13
class
PHPWebDriver_ExpectedWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 14
class
PHPWebDriver_ElementNotSelectableWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 15
class
PHPWebDriver_NoSuchDocumentWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 16
class
PHPWebDriver_UnexpectedJavascriptWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 17
class
PHPWebDriver_NoScriptResultWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 18
class
PHPWebDriver_XPathLookupWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 19
class
PHPWebDriver_NoSuchCollectionWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 20
class
PHPWebDriver_TimeOutWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 21
class
PHPWebDriver_NullPointerWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 22
class
PHPWebDriver_NoSuchWindowWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 23
class
PHPWebDriver_InvalidCookieDomainWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 24
class
PHPWebDriver_UnableToSetCookieWebDriverError
extends
PHPWebDriver_WebDriverException {}
//25
class
PHPWebDriver_UnexpectedAlertOpenWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 26
class
PHPWebDriver_NoAlertOpenWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 27
class
PHPWebDriver_ScriptTimeoutWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 28
class
PHPWebDriver_InvalidElementCoordinatesWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 29
class
PHPWebDriver_IMENotAvailableWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 30
class
PHPWebDriver_IMEEngineActivationFailedWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 31
class
PHPWebDriver_InvalidSelectorWebDriverError
extends
PHPWebDriver_WebDriverException {}
// 32
class
PHPWebDriver_InvalidProxyConfiguration
extends
PHPWebDriver_WebDriverException {}
// xx
class
PHPWebDriver_UnexpectedTagNameException
extends
PHPWebDriver_WebDriverException {}
// xx
class
PHPWebDriver_InternalServerError
extends
PHPWebDriver_WebDriverException {}
// 500
class
PHPWebDriver_ChainError
extends
PHPWebDriver_WebDriverException {}
// xx
class
PHPWebDriver_NotImplementedError
extends
PHPWebDriver_WebDriverException {}
// xx
Back
|
FazBrowse Home
|
New Git URL