Home
last modified time | relevance | path

Searched refs:DriverCommand (Results 1 – 15 of 15) sorted by relevance

/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
DHttpCommandExecutor.php25DriverCommand::ACCEPT_ALERT => ['method' => 'POST', 'url' => '/session/:sessionId/accept_alert'],
26 DriverCommand::ADD_COOKIE => ['method' => 'POST', 'url' => '/session/:sessionId/cookie'],
27DriverCommand::CLEAR_ELEMENT => ['method' => 'POST', 'url' => '/session/:sessionId/element/:id/cle…
28DriverCommand::CLICK_ELEMENT => ['method' => 'POST', 'url' => '/session/:sessionId/element/:id/cli…
29 DriverCommand::CLOSE => ['method' => 'DELETE', 'url' => '/session/:sessionId/window'],
30DriverCommand::DELETE_ALL_COOKIES => ['method' => 'DELETE', 'url' => '/session/:sessionId/cookie'],
31DriverCommand::DELETE_COOKIE => ['method' => 'DELETE', 'url' => '/session/:sessionId/cookie/:name'…
32DriverCommand::DISMISS_ALERT => ['method' => 'POST', 'url' => '/session/:sessionId/dismiss_alert'],
33DriverCommand::ELEMENT_EQUALS => ['method' => 'GET', 'url' => '/session/:sessionId/element/:id/equ…
34DriverCommand::FIND_CHILD_ELEMENT => ['method' => 'POST', 'url' => '/session/:sessionId/element/:i…
[all …]
DRemoteWebElement.php60 DriverCommand::CLEAR_ELEMENT,
76 DriverCommand::CLICK_ELEMENT,
106 DriverCommand::FIND_CHILD_ELEMENT,
130 DriverCommand::FIND_CHILD_ELEMENTS,
159 $value = $this->executor->execute(DriverCommand::GET_ELEMENT_PROPERTY, $params);
174 return $this->executor->execute(DriverCommand::GET_ELEMENT_ATTRIBUTE, $params);
196 return $this->executor->execute(DriverCommand::GET_ELEMENT_PROPERTY, $params);
213 DriverCommand::GET_ELEMENT_VALUE_OF_CSS_PROPERTY,
226 DriverCommand::GET_ELEMENT_LOCATION,
249 $result = $this->executor->execute(DriverCommand::EXECUTE_SCRIPT, [
[all …]
DRemoteTouchScreen.php34 DriverCommand::TOUCH_SINGLE_TAP,
49 DriverCommand::TOUCH_DOUBLE_TAP,
64 $this->executor->execute(DriverCommand::TOUCH_DOWN, [
80 $this->executor->execute(DriverCommand::TOUCH_FLICK, [
98 $this->executor->execute(DriverCommand::TOUCH_FLICK, [
116 DriverCommand::TOUCH_LONG_PRESS,
131 $this->executor->execute(DriverCommand::TOUCH_MOVE, [
147 $this->executor->execute(DriverCommand::TOUCH_SCROLL, [
164 $this->executor->execute(DriverCommand::TOUCH_SCROLL, [
181 $this->executor->execute(DriverCommand::TOUCH_UP, [
DRemoteMouse.php48 $this->executor->execute(DriverCommand::ACTIONS, [
63 $this->executor->execute(DriverCommand::CLICK, [
79 $this->executor->execute(DriverCommand::ACTIONS, [
103 $this->executor->execute(DriverCommand::CLICK, [
120 $this->executor->execute(DriverCommand::ACTIONS, [
135 $this->executor->execute(DriverCommand::DOUBLE_CLICK);
148 $this->executor->execute(DriverCommand::ACTIONS, [
169 $this->executor->execute(DriverCommand::MOUSE_DOWN);
187 $this->executor->execute(DriverCommand::ACTIONS, [
212 $this->executor->execute(DriverCommand::MOVE_TO, $params);
[all …]
DRemoteKeyboard.php42 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [
60 $this->executor->execute(DriverCommand::ACTIONS, [
70 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [
88 $this->executor->execute(DriverCommand::ACTIONS, [
98 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [
DRemoteTargetLocator.php35 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params);
73 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params);
85 $this->executor->execute(DriverCommand::SWITCH_TO_PARENT_FRAME, []);
102 $this->executor->execute(DriverCommand::SWITCH_TO_WINDOW, $params);
127 $response = $this->executor->execute(DriverCommand::NEW_WINDOW, ['type' => $windowType]);
144 $response = $this->driver->execute(DriverCommand::GET_ACTIVE_ELEMENT, []);
DWebDriverCommand.php34 return new self(null, DriverCommand::NEW_SESSION, $parameters);
DCustomWebDriverCommand.php27 parent::__construct($session_id, DriverCommand::CUSTOM_COMMAND, $parameters);
DDriverCommand.php10 class DriverCommand class
/plugin/combo/vendor/php-webdriver/webdriver/lib/
DWebDriverWindow.php7 use Facebook\WebDriver\Remote\DriverCommand; alias
39 DriverCommand::GET_WINDOW_POSITION,
58 DriverCommand::GET_WINDOW_SIZE,
79 $this->executor->execute(DriverCommand::MINIMIZE_WINDOW, []);
92 $this->executor->execute(DriverCommand::MAXIMIZE_WINDOW, []);
95 DriverCommand::MAXIMIZE_WINDOW,
114 $this->executor->execute(DriverCommand::FULLSCREEN_WINDOW, []);
133 $this->executor->execute(DriverCommand::SET_WINDOW_SIZE, $params);
152 $this->executor->execute(DriverCommand::SET_WINDOW_POSITION, $params);
164 return $this->executor->execute(DriverCommand::GET_SCREEN_ORIENTATION);
[all …]
DWebDriverTimeouts.php5 use Facebook\WebDriver\Remote\DriverCommand; alias
38 DriverCommand::IMPLICITLY_WAIT,
46 DriverCommand::IMPLICITLY_WAIT,
63 DriverCommand::SET_SCRIPT_TIMEOUT,
71 DriverCommand::SET_SCRIPT_TIMEOUT,
88 DriverCommand::SET_SCRIPT_TIMEOUT,
95 $this->executor->execute(DriverCommand::SET_TIMEOUT, [
DWebDriverOptions.php6 use Facebook\WebDriver\Remote\DriverCommand; alias
47 DriverCommand::ADD_COOKIE,
61 $this->executor->execute(DriverCommand::DELETE_ALL_COOKIES);
75 DriverCommand::DELETE_COOKIE,
93 DriverCommand::GET_NAMED_COOKIE,
121 $cookieArrays = $this->executor->execute(DriverCommand::GET_ALL_COOKIES);
165 DriverCommand::GET_LOG,
178 return $this->executor->execute(DriverCommand::GET_AVAILABLE_LOG_TYPES);
DWebDriverNavigation.php5 use Facebook\WebDriver\Remote\DriverCommand; alias
19 $this->executor->execute(DriverCommand::GO_BACK);
26 $this->executor->execute(DriverCommand::GO_FORWARD);
33 $this->executor->execute(DriverCommand::REFRESH);
41 $this->executor->execute(DriverCommand::GET, $params);
DWebDriverAlert.php5 use Facebook\WebDriver\Remote\DriverCommand; alias
30 $this->executor->execute(DriverCommand::ACCEPT_ALERT);
42 $this->executor->execute(DriverCommand::DISMISS_ALERT);
54 return $this->executor->execute(DriverCommand::GET_ALERT_TEXT);
66 DriverCommand::SET_ALERT_VALUE,
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/Service/
DDriverCommandExecutor.php7 use Facebook\WebDriver\Remote\DriverCommand; alias
37 if ($command->getName() === DriverCommand::NEW_SESSION) {
43 if ($command->getName() === DriverCommand::QUIT) {