Lines Matching defs:executor
22 protected $executor;
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);
158 $executor = new HttpCommandExecutor($selenium_server_url, null, null);
160 $executor->setConnectionTimeout($connection_timeout_in_ms);
163 $executor->setRequestTimeout($request_timeout_in_ms);
167 $executor->disableW3cCompliance();
170 return new static($executor, $session_id, null, $isW3cCompliant);
313 $this->executor = null;
494 * Set the command executor of this RemoteWebdriver
499 * @param WebDriverCommandExecutor $executor Despite the typehint, it have be an instance of HttpCommandExecutor.
502 public function setCommandExecutor(WebDriverCommandExecutor $executor)
504 $this->executor = $executor;
510 * Get the command executor of this RemoteWebdriver
516 return $this->executor;
564 $executor = new HttpCommandExecutor($selenium_server_url, null, null);
565 $executor->setConnectionTimeout($timeout_in_ms);
573 return $executor->execute($command)->getValue();
584 if ($this->executor) {
585 $response = $this->executor->execute($command);
612 if ($this->executor) {
613 $response = $this->executor->execute($command);
632 * Also detect W3C/OSS dialect and setup the driver/executor accordingly.