|
19 | 19 | * This list of command defined in the WebDriver json wire protocol. |
20 | 20 | */ |
21 | 21 | class DriverCommand { |
22 | | - |
23 | 22 | const GET_ALL_SESSIONS = "getAllSessions"; |
24 | 23 | const GET_CAPABILITIES = "getCapabilities"; |
25 | 24 | const NEW_SESSION = "newSession"; |
@@ -126,16 +125,14 @@ class DriverCommand { |
126 | 125 | const SET_SCREEN_ORIENTATION = "setScreenOrientation"; |
127 | 126 | const GET_SCREEN_ORIENTATION = "getScreenOrientation"; |
128 | 127 |
|
129 | | - // These belong to the Advanced user interactions - an element is |
130 | | - // optional for these commands. |
| 128 | + // These belong to the Advanced user interactions - an element is optional for these commands. |
131 | 129 | const CLICK = "mouseClick"; |
132 | 130 | const DOUBLE_CLICK = "mouseDoubleClick"; |
133 | 131 | const MOUSE_DOWN = "mouseButtonDown"; |
134 | 132 | const MOUSE_UP = "mouseButtonUp"; |
135 | 133 | const MOVE_TO = "mouseMoveTo"; |
136 | 134 |
|
137 | | - // Those allow interactions with the Input Methods installed on |
138 | | - // the system. |
| 135 | + // Those allow interactions with the Input Methods installed on the system. |
139 | 136 | const IME_GET_AVAILABLE_ENGINES = "imeGetAvailableEngines"; |
140 | 137 | const IME_GET_ACTIVE_ENGINE = "imeGetActiveEngine"; |
141 | 138 | const IME_IS_ACTIVATED = "imeIsActivated"; |
@@ -168,4 +165,7 @@ class DriverCommand { |
168 | 165 | const GET_NETWORK_CONNECTION = "getNetworkConnection"; |
169 | 166 | const SET_NETWORK_CONNECTION = "setNetworkConnection"; |
170 | 167 |
|
| 168 | + private function __construct() |
| 169 | + { |
| 170 | + } |
171 | 171 | } |
0 commit comments