forked from php-webdriver/php-webdriver
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebDriverBase.php
More file actions
Latest commit
236 lines (212 loc) · 7.73 KB
/
Copy pathWebDriverBase.php
File metadata and controls
236 lines (212 loc) · 7.73 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?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.
abstractclass WebDriverBase {
publicstaticfunctionthrowException($status_code, $message, $results) {
switch ($status_code) {
case0:
// Success
break;
case1:
thrownewIndexOutOfBoundsWebDriverError($message, $results);
case2:
thrownewNoCollectionWebDriverError($message, $results);
case3:
thrownewNoStringWebDriverError($message, $results);
case4:
thrownewNoStringLengthWebDriverError($message, $results);
case5:
thrownewNoStringWrapperWebDriverError($message, $results);
case6:
thrownewNoSuchDriverWebDriverError($message, $results);
case7:
thrownewNoSuchElementWebDriverError($message, $results);
case8:
thrownewNoSuchFrameWebDriverError($message, $results);
case9:
thrownewUnknownCommandWebDriverError($message, $results);
case10:
thrownewObsoleteElementWebDriverError($message, $results);
case11:
thrownewElementNotDisplayedWebDriverError($message, $results);
case12:
thrownewInvalidElementStateWebDriverError($message, $results);
case13:
thrownewUnhandledWebDriverError($message, $results);
case14:
thrownewExpectedWebDriverError($message, $results);
case15:
thrownewElementNotSelectableWebDriverError($message, $results);
case16:
thrownewNoSuchDocumentWebDriverError($message, $results);
case17:
thrownewUnexpectedJavascriptWebDriverError($message, $results);
case18:
thrownewNoScriptResultWebDriverError($message, $results);
case19:
thrownewXPathLookupWebDriverError($message, $results);
case20:
thrownewNoSuchCollectionWebDriverError($message, $results);
case21:
thrownewTimeOutWebDriverError($message, $results);
case22:
thrownewNullPointerWebDriverError($message, $results);
case23:
thrownewNoSuchWindowWebDriverError($message, $results);
case24:
thrownewInvalidCookieDomainWebDriverError($message, $results);
case25:
thrownewUnableToSetCookieWebDriverError($message, $results);
case26:
thrownewUnexpectedAlertOpenWebDriverError($message, $results);
case27:
thrownewNoAlertOpenWebDriverError($message, $results);
case28:
thrownewScriptTimeoutWebDriverError($message, $results);
case29:
thrownewInvalidElementCoordinatesWebDriverError($message, $results);
case30:
thrownewIMENotAvailableWebDriverError($message, $results);
case31:
thrownewIMEEngineActivationFailedWebDriverError($message, $results);
case32:
thrownewInvalidSelectorWebDriverError($message, $results);
}
}
abstractprotectedfunctionmethods();
protected$url;
publicfunction__construct($url = 'http://localhost:4444/wd/hub') {
$this->url = $url;
}
publicfunction__toString() {
return$this->url;
}
publicfunctiongetURL() {
return$this->url;
}
/**
* Curl request to webdriver server.
*
* $http_method 'GET', 'POST', or 'DELETE'
* $command If not defined in methods() this function will throw.
* $params If an array(), they will be posted as JSON parameters
* If a number or string, "/$params" is appended to url
* $extra_opts key=>value pairs of curl options to pass to curl_setopt()
*/
protectedfunctioncurl(
$http_method,
$command,
$params = null,
$extra_opts = array()) {
if ($params && is_array($params) && $http_method !== 'POST') {
thrownewException(sprintf(
'The http method called for %s is %s but it has to be POST' .
' if you want to pass the JSON params %s',
$command,
$http_method,
json_encode($params)));
}
$url = sprintf('%s%s', $this->url, $command);
if ($params && (is_int($params) || is_string($params))) {
$url .= '/' . $params;
}
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt(
$curl,
CURLOPT_HTTPHEADER,
array(
'Content-Type: application/json;charset=UTF-8',
'Accept: application/json'));
if ($http_method === 'POST') {
curl_setopt($curl, CURLOPT_POST, true);
if ($params && is_array($params)) {
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($params));
}
} elseif ($http_method == 'DELETE') {
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
}
foreach ($extra_optsas$option => $value) {
curl_setopt($curl, $option, $value);
}
$raw_results = trim(WebDriverEnvironment::CurlExec($curl));
$info = curl_getinfo($curl);
if ($error = curl_error($curl)) {
$msg = sprintf(
'Curl error thrown for http %s to %s',
$http_method,
$url);
if ($params && is_array($params)) {
$msg .= sprintf(' with params: %s', json_encode($params));
}
thrownewWebDriverCurlException($msg . "\n\n" . $error);
}
curl_close($curl);
$results = json_decode($raw_results, true);
$value = null;
if (is_array($results) && array_key_exists('value', $results)) {
$value = $results['value'];
}
$message = null;
if (is_array($value) && array_key_exists('message', $value)) {
$message = $value['message'];
}
self::throwException($results['status'], $message, $results);
returnarray('value' => $value, 'info' => $info);
}
publicfunction__call($name, $arguments) {
if (count($arguments) > 1) {
thrownewException(
'Commands should have at most only one parameter,' .
' which should be the JSON Parameter object');
}
if (preg_match('/^(get|post|delete)/', $name, $matches)) {
$http_method = strtoupper($matches[0]);
$webdriver_command = strtolower(substr($name, strlen($http_method)));
$default_http_method = $this->getHTTPMethod($webdriver_command);
if ($http_method === $default_http_method) {
thrownewException(sprintf(
'%s is the default http method for %s. Please just call %s().',
$http_method,
$webdriver_command,
$webdriver_command));
}
$methods = $this->methods();
if (!in_array($http_method, $methods[$webdriver_command])) {
thrownewException(sprintf(
'%s is not an available http method for the command %s.',
$http_method,
$webdriver_command));
}
} else {
$webdriver_command = $name;
$http_method = $this->getHTTPMethod($webdriver_command);
}
$results = $this->curl(
$http_method,
'/' . $webdriver_command,
array_shift($arguments));
return$results['value'];
}
privatefunctiongetHTTPMethod($webdriver_command) {
if (!array_key_exists($webdriver_command, $this->methods())) {
thrownewException(sprintf(
'%s is not a valid webdriver command.',
$webdriver_command));
}
$methods = $this->methods();
$http_methods = (array) $methods[$webdriver_command];
returnarray_shift($http_methods);
}
}