Home
last modified time | relevance | path

Searched refs:executor (Results 1 – 25 of 49) sorted by relevance

12

/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteTouchScreen.php16 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteTouchScreen
19 * @param RemoteExecuteMethod $executor
21 public function __construct(RemoteExecuteMethod $executor) argument
23 $this->executor = $executor;
33 $this->executor->execute(
48 $this->executor->execute(
64 $this->executor->execute(DriverCommand::TOUCH_DOWN, [
80 $this->executor->execute(DriverCommand::TOUCH_FLICK, [
98 $this->executor->execute(DriverCommand::TOUCH_FLICK, [
115 $this->executor->execute(
[all …]
H A DRemoteWebElement.php25 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteWebElement
40 * @param RemoteExecuteMethod $executor
44 public function __construct(RemoteExecuteMethod $executor, $id, $isW3cCompliant = false) argument
46 $this->executor = $executor;
59 $this->executor->execute(
75 $this->executor->execute(
105 $raw_element = $this->executor->execute(
129 $raw_elements = $this->executor->execute(
159 $value = $this->executor->execute(DriverCommand::GET_ELEMENT_PROPERTY, $params);
174 return $this->executor->execute(DriverCommand::GET_ELEMENT_ATTRIBUTE, $params);
[all …]
H A DRemoteMouse.php23 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteMouse
30 * @param RemoteExecuteMethod $executor
33 public function __construct(RemoteExecuteMethod $executor, $isW3cCompliant = false) argument
35 $this->executor = $executor;
48 $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);
[all …]
H A DRemoteKeyboard.php15 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteKeyboard
24 …public function __construct(RemoteExecuteMethod $executor, WebDriver $driver, $isW3cCompliant = fa… argument
26 $this->executor = $executor;
42 $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, [
H A DRemoteTargetLocator.php16 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteTargetLocator
22 …public function __construct(RemoteExecuteMethod $executor, RemoteWebDriver $driver, $isW3cComplian… argument
24 $this->executor = $executor;
35 $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]);
136 return new WebDriverAlert($this->executor);
H A DRemoteWebDriver.php22 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteWebDriver
65 $this->executor = $commandExecutor;
100 $executor = new HttpCommandExecutor($selenium_server_url, $http_proxy, $http_proxy_port);
102 $executor->setConnectionTimeout($connection_timeout_in_ms);
105 $executor->setRequestTimeout($request_timeout_in_ms);
131 $response = $executor->execute($command);
133 return static::createFromResponse($response, $executor);
499 …* @param WebDriverCommandExecutor $executor Despite the typehint, it have be an instance of HttpCo…
502 public function setCommandExecutor(WebDriverCommandExecutor $executor) argument
504 $this->executor = $executor;
[all …]
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverWindow.php18 protected $executor; variable in Facebook\\WebDriver\\WebDriverWindow
24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
26 $this->executor = $executor;
38 $position = $this->executor->execute(
57 $size = $this->executor->execute(
79 $this->executor->execute(DriverCommand::MINIMIZE_WINDOW, []);
92 $this->executor->execute(DriverCommand::MAXIMIZE_WINDOW, []);
94 $this->executor->execute(
114 $this->executor->execute(DriverCommand::FULLSCREEN_WINDOW, []);
133 $this->executor->execute(DriverCommand::SET_WINDOW_SIZE, $params);
[all …]
H A DWebDriverOptions.php18 protected $executor; variable in Facebook\\WebDriver\\WebDriverOptions
24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
26 $this->executor = $executor;
46 $this->executor->execute(
61 $this->executor->execute(DriverCommand::DELETE_ALL_COOKIES);
74 $this->executor->execute(
92 $cookieArray = $this->executor->execute(
121 $cookieArrays = $this->executor->execute(DriverCommand::GET_ALL_COOKIES);
141 return new WebDriverTimeouts($this->executor, $this->isW3cCompliant);
152 return new WebDriverWindow($this->executor, $this->isW3cCompliant);
[all …]
H A DWebDriverTimeouts.php16 protected $executor; variable in Facebook\\WebDriver\\WebDriverTimeouts
22 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
24 $this->executor = $executor;
37 $this->executor->execute(
45 $this->executor->execute(
62 $this->executor->execute(
70 $this->executor->execute(
87 $this->executor->execute(
95 $this->executor->execute(DriverCommand::SET_TIMEOUT, [
H A DWebDriverNavigation.php10 protected $executor; variable in Facebook\\WebDriver\\WebDriverNavigation
12 public function __construct(ExecuteMethod $executor) argument
14 $this->executor = $executor;
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);
H A DWebDriverAlert.php16 protected $executor; variable in Facebook\\WebDriver\\WebDriverAlert
18 public function __construct(ExecuteMethod $executor) argument
20 $this->executor = $executor;
30 $this->executor->execute(DriverCommand::ACCEPT_ALERT);
42 $this->executor->execute(DriverCommand::DISMISS_ALERT);
54 return $this->executor->execute(DriverCommand::GET_ALERT_TEXT);
65 $this->executor->execute(
/plugin/bez/tpl/
H A Dactivity_report.php31 <?php $executor = 0 ?> variable
47 <?php $executor += $involvement['task_assignee_sum'] ?>
55 <td><?php echo $executor ?></td>
74 <?php $executor = 0 ?> variable
88 <?php $executor += $involvement['assignee_sum'] ?>
96 <td><?php echo $executor ?></td>
/plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDriver.php49 $executor = new DriverCommandExecutor($service);
59 $response = $executor->execute($newSessionCommand);
65 return static::createFromResponse($response, $executor);
84 $response = $this->executor->execute($command);
88 $this->executor->disableW3cCompliance();
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxDriver.php45 $executor = new DriverCommandExecutor($service);
54 $response = $executor->execute($newSessionCommand);
59 return new static($executor, $sessionId, $returnedCapabilities, true);
/plugin/davcal/vendor/sabre/event/lib/
H A DPromise.php68 * @param callable $executor
70 function __construct(callable $executor = null) { argument
72 if ($executor) {
73 $executor(
/plugin/webdav/vendor/sabre/event/lib/
DPromise.php56 * @param callable $executor
58 function __construct(callable $executor = null) { argument
60 if ($executor) {
61 $executor(
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNConfig.php25 ?LexerActionExecutor $executor = null, argument
30 $this->lexerActionExecutor = $executor ?? ($oldConfig->lexerActionExecutor ?? null);
/plugin/asciidocjs/node_modules/core-js/modules/
Des6.promise.js172 $Promise = function Promise(executor) { argument
174 aFunction(executor);
177 executor(ctx($resolve, this, 1), ctx($reject, this, 1));
183 Internal = function Promise(executor) { argument
/plugin/asciidocjs/node_modules/core-js/library/modules/
Des6.promise.js172 $Promise = function Promise(executor) { argument
174 aFunction(executor);
177 executor(ctx($resolve, this, 1), ctx($reject, this, 1));
183 Internal = function Promise(executor) { argument
/plugin/diagramsnet/lib/WEB-INF/lib/
Dehcache-3.8.1.jar ... INF/org.ehcache.impl.internal.executor.DefaultExecutionServiceFactory.xml OSGI-INF/org. ...
/plugin/asciidocjs/node_modules/promise/
Dindex.d.ts59 …new <T>(executor: (resolve: (value?: T | Thenable<T>) => void, reject: (reason?: any) => void) => …
/plugin/dirtylittlehelper/mermaid/editor/docs/
D12.12.js.map1 …uential?',\n 'set',\n 'set-agent-send-executor!',\n 'set-agent-send-off-execu…
/plugin/codemirror/dist/modes/
Dclojure.min.js.map1 …,\n \"sequential?\", \"set\", \"set-agent-send-executor!\",\n \"set-agent-send-off-execu…
/plugin/asciidocjs/node_modules/core-js/client/
Dlibrary.js5956 $Promise = function Promise(executor) {
5958 aFunction(executor);
5961 executor(ctx($resolve, this, 1), ctx($reject, this, 1));
5967 Internal = function Promise(executor) {
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
Ddhtmlxgantt.js1041 Promise.prototype._execute = function(executor, resolve, reject) {
1043 executor(resolve, reject);
1062 function cancellationExecute(executor, resolve, reject) {
1065 executor(resolve, reject, function(onCancel) {
2761 function check(self, executor) {
2765 if (typeof executor !== "function") {
2766 throw new TypeError("expecting a function but got " + util.classString(executor));
2771 function Promise(executor) {
2772 if (executor !== INTERNAL) {
2773 check(this, executor);
[all …]

12