FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/lib/Remote/RemoteKeyboard.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
/
RemoteKeyboard.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
105 lines (95 loc) · 2.65 KB
Breadcrumbs
php-webdriver
/
lib
/
Remote
/
RemoteKeyboard.php
Copy path
File metadata and controls
105 lines (95 loc) · 2.65 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
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
<?php
namespace
Facebook
\
WebDriver
\
Remote
;
use
Facebook
\
WebDriver
\
WebDriver
;
use
Facebook
\
WebDriver
\
WebDriverKeyboard
;
use
Facebook
\
WebDriver
\
WebDriverKeys
;
/**
* Execute keyboard commands for RemoteWebDriver.
*/
class
RemoteKeyboard
implements
WebDriverKeyboard
{
/** @var RemoteExecuteMethod */
private
$
executor
;
/** @var WebDriver */
private
$
driver
;
/** @var bool */
private
$
isW3cCompliant
;
/**
* @param bool $isW3cCompliant
*/
public
function
__construct
(
RemoteExecuteMethod
$
executor
,
WebDriver
$
driver
,
$
isW3cCompliant
=
false
)
{
$
this
->
executor
=
$
executor
;
$
this
->
driver
=
$
driver
;
$
this
->
isW3cCompliant
=
$
isW3cCompliant
;
}
/**
* Send keys to active element
* @param string|array $keys
* @return $this
*/
public
function
sendKeys
(
$
keys
)
{
if
(
$
this
->
isW3cCompliant
) {
$
activeElement
=
$
this
->
driver
->
switchTo
()->
activeElement
();
$
activeElement
->
sendKeys
(
$
keys
);
}
else
{
$
this
->
executor
->
execute
(DriverCommand::
SEND_KEYS_TO_ACTIVE_ELEMENT
, [
'
value
'
=> WebDriverKeys::
encode
(
$
keys
),
]);
}
return
$
this
;
}
/**
* Press a modifier key
*
* @see WebDriverKeys
* @param string $key
* @return $this
*/
public
function
pressKey
(
$
key
)
{
if
(
$
this
->
isW3cCompliant
) {
$
this
->
executor
->
execute
(DriverCommand::
ACTIONS
, [
'
actions
'
=> [
[
'
type
'
=>
'
key
'
,
'
id
'
=>
'
keyboard
'
,
'
actions
'
=> [[
'
type
'
=>
'
keyDown
'
,
'
value
'
=>
$
key
]],
],
],
]);
}
else
{
$
this
->
executor
->
execute
(DriverCommand::
SEND_KEYS_TO_ACTIVE_ELEMENT
, [
'
value
'
=> [(
string
)
$
key
],
]);
}
return
$
this
;
}
/**
* Release a modifier key
*
* @see WebDriverKeys
* @param string $key
* @return $this
*/
public
function
releaseKey
(
$
key
)
{
if
(
$
this
->
isW3cCompliant
) {
$
this
->
executor
->
execute
(DriverCommand::
ACTIONS
, [
'
actions
'
=> [
[
'
type
'
=>
'
key
'
,
'
id
'
=>
'
keyboard
'
,
'
actions
'
=> [[
'
type
'
=>
'
keyUp
'
,
'
value
'
=>
$
key
]],
],
],
]);
}
else
{
$
this
->
executor
->
execute
(DriverCommand::
SEND_KEYS_TO_ACTIVE_ELEMENT
, [
'
value
'
=> [(
string
)
$
key
],
]);
}
return
$
this
;
}
}
Back
|
FazBrowse Home
|
New Git URL