/template/strap/vendor/php-webdriver/webdriver/lib/Remote/ |
D | RemoteTouchScreen.php | 16 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 …]
|
D | RemoteWebElement.php | 25 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 …]
|
D | RemoteMouse.php | 23 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 …]
|
D | RemoteKeyboard.php | 15 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, [
|
D | RemoteTargetLocator.php | 16 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);
|
D | RemoteWebDriver.php | 22 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 …]
|
/template/strap/vendor/php-webdriver/webdriver/lib/ |
D | WebDriverWindow.php | 18 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 …]
|
D | WebDriverOptions.php | 18 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 …]
|
D | WebDriverTimeouts.php | 16 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, [
|
D | WebDriverNavigation.php | 10 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);
|
D | WebDriverAlert.php | 16 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(
|
/template/strap/vendor/php-webdriver/webdriver/lib/Chrome/ |
D | ChromeDriver.php | 49 $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();
|
/template/strap/vendor/php-webdriver/webdriver/lib/Firefox/ |
D | FirefoxDriver.php | 45 $executor = new DriverCommandExecutor($service); 54 $response = $executor->execute($newSessionCommand); 59 return new static($executor, $sessionId, $returnedCapabilities, true);
|
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
D | LexerATNConfig.php | 25 ?LexerActionExecutor $executor = null, argument 30 $this->lexerActionExecutor = $executor ?? ($oldConfig->lexerActionExecutor ?? null);
|
/template/strap/resources/library/rrdiagram/0.9.4.1/ |
D | rrdiagram.js.map | 1 …executor","err","onFulfilled","onRejected","capability","all","remaining","$index","alreadyCalled"…
|
/template/strap/resources/library/combo/ |
D | combo.min.js.map | 1 …// is why the Promise constructor synchronously invokes its\n // executor callback, and why…
|
/template/strap/resources/library/combo/dist/ |
D | combo.min.js.map | 1 …// is why the Promise constructor synchronously invokes its\n // executor callback, and why…
|