FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/lib/Remote/RemoteStatus.php at main · php-webdriver/php-webdriver · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
php-webdriver
/
php-webdriver
Public
Notifications
You must be signed in to change notification settings
Fork
842
Star
5.2k
Code
Issues
21
Pull requests
9
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
php-webdriver
/
lib
/
Remote
/
RemoteStatus.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
79 lines (68 loc) · 1.64 KB
Breadcrumbs
php-webdriver
/
lib
/
Remote
/
RemoteStatus.php
Copy path
File metadata and controls
79 lines (68 loc) · 1.64 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace
Facebook
\
WebDriver
\
Remote
;
/**
* Represents status of remote end
*
* @see https://www.w3.org/TR/webdriver/#status
*/
class
RemoteStatus
{
/** @var bool */
protected
$
isReady
;
/** @var string */
protected
$
message
;
/** @var array */
protected
$
meta
= [];
/**
* @param bool $isReady
* @param string $message
*/
protected
function
__construct
(
$
isReady
,
$
message
,
array
$
meta
= [])
{
$
this
->
isReady
= (
bool
)
$
isReady
;
$
this
->
message
= (
string
)
$
message
;
$
this
->
setMeta
(
$
meta
);
}
/**
* @return RemoteStatus
*/
public
static
function
createFromResponse
(
array
$
responseBody
)
{
$
object
=
new
static
(
$
responseBody
[
'
ready
'
],
$
responseBody
[
'
message
'
],
$
responseBody
);
return
$
object
;
}
/**
* The remote end's readiness state.
* False if an attempt to create a session at the current time would fail.
* However, the value true does not guarantee that a New Session command will succeed.
*
* @return bool
*/
public
function
isReady
()
{
return
$
this
->
isReady
;
}
/**
* An implementation-defined string explaining the remote end's readiness state.
*
* @return string
*/
public
function
getMessage
()
{
return
$
this
->
message
;
}
/**
* Arbitrary meta information specific to remote-end implementation.
*
* @return array
*/
public
function
getMeta
()
{
return
$
this
->
meta
;
}
protected
function
setMeta
(
array
$
meta
)
{
unset(
$
meta
[
'
ready
'
],
$
meta
[
'
message
'
]);
$
this
->
meta
=
$
meta
;
}
}
Back
|
FazBrowse Home
|
New Git URL