Home
last modified time | relevance | path

Searched refs:isW3cCompliant (Results 1 – 12 of 12) sorted by relevance

/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteKeyboard.php19 private $isW3cCompliant; variable in Facebook\\WebDriver\\Remote\\RemoteKeyboard
22 * @param bool $isW3cCompliant
24 …public function __construct(RemoteExecuteMethod $executor, WebDriver $driver, $isW3cCompliant = fa… argument
28 $this->isW3cCompliant = $isW3cCompliant;
38 if ($this->isW3cCompliant) {
59 if ($this->isW3cCompliant) {
87 if ($this->isW3cCompliant) {
H A DRemoteMouse.php27 private $isW3cCompliant; variable in Facebook\\WebDriver\\Remote\\RemoteMouse
31 * @param bool $isW3cCompliant
33 public function __construct(RemoteExecuteMethod $executor, $isW3cCompliant = false) argument
36 $this->isW3cCompliant = $isW3cCompliant;
46 if ($this->isW3cCompliant) {
77 if ($this->isW3cCompliant) {
117 if ($this->isW3cCompliant) {
147 if ($this->isW3cCompliant) {
186 if ($this->isW3cCompliant) {
224 if ($this->isW3cCompliant) {
H A DRemoteTargetLocator.php20 protected $isW3cCompliant; variable in Facebook\\WebDriver\\Remote\\RemoteTargetLocator
22 …nction __construct(RemoteExecuteMethod $executor, RemoteWebDriver $driver, $isW3cCompliant = false) argument
26 $this->isW3cCompliant = $isW3cCompliant;
48 if ($this->isW3cCompliant) {
96 if ($this->isW3cCompliant) {
123 if (!$this->isW3cCompliant) {
147 …return new RemoteWebElement($method, JsonWireCompat::getElement($response), $this->isW3cCompliant);
H A DRemoteWebElement.php37 protected $isW3cCompliant; variable in Facebook\\WebDriver\\Remote\\RemoteWebElement
42 * @param bool $isW3cCompliant
44 public function __construct(RemoteExecuteMethod $executor, $id, $isW3cCompliant = false) argument
49 $this->isW3cCompliant = $isW3cCompliant;
102 $params = JsonWireCompat::getUsing($by, $this->isW3cCompliant);
127 $params = JsonWireCompat::getUsing($by, $this->isW3cCompliant);
158 if ($this->isW3cCompliant && ($attribute_name === 'value' || $attribute_name === 'index')) {
187 if (!$this->isW3cCompliant) {
241 if ($this->isW3cCompliant) {
387 if ($this->isW3cCompliant) {
[all …]
H A DRemoteWebDriver.php51 protected $isW3cCompliant; variable in Facebook\\WebDriver\\Remote\\RemoteWebDriver
57 …* @param bool $isW3cCompliant false to use the legacy JsonWire protocol, true for the W3C WebDrive…
63 $isW3cCompliant = false argument
67 $this->isW3cCompliant = $isW3cCompliant;
146 …* @param bool $isW3cCompliant True to use W3C WebDriver (default), false to use the legacy JsonWir…
444 return new RemoteTargetLocator($this->getExecuteMethod(), $this, $this->isW3cCompliant);
453 $this->mouse = new RemoteMouse($this->getExecuteMethod(), $this->isW3cCompliant);
465 … $this->keyboard = new RemoteKeyboard($this->getExecuteMethod(), $this, $this->isW3cCompliant);
H A DJsonWireCompat.php34 * @param bool $isW3cCompliant
38 public static function getUsing(WebDriverBy $by, $isW3cCompliant) argument
43 if ($isW3cCompliant) {
H A DHttpCommandExecutor.php178 protected $isW3cCompliant = true; variable in Facebook\\WebDriver\\Remote\\HttpCommandExecutor
217 $this->isW3cCompliant = false;
313 } elseif ($this->isW3cCompliant) {
403 if ($this->isW3cCompliant && !isset(self::$w3cCompliantCommands[$commandName])) {
408 if ($this->isW3cCompliant) {
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverTimeouts.php20 protected $isW3cCompliant; variable in Facebook\\WebDriver\\WebDriverTimeouts
22 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
25 $this->isW3cCompliant = $isW3cCompliant;
36 if ($this->isW3cCompliant) {
61 if ($this->isW3cCompliant) {
86 if ($this->isW3cCompliant) {
H A DWebDriverOptions.php22 protected $isW3cCompliant; variable in Facebook\\WebDriver\\WebDriverOptions
24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
27 $this->isW3cCompliant = $isW3cCompliant;
91 if ($this->isW3cCompliant) {
141 return new WebDriverTimeouts($this->executor, $this->isW3cCompliant);
152 return new WebDriverWindow($this->executor, $this->isW3cCompliant);
H A DWebDriverWindow.php22 protected $isW3cCompliant; variable in Facebook\\WebDriver\\WebDriverWindow
24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument
27 $this->isW3cCompliant = $isW3cCompliant;
75 if (!$this->isW3cCompliant) {
91 if ($this->isW3cCompliant) {
110 if (!$this->isW3cCompliant) {
H A DWebDriverKeys.php96 * @param bool $isW3cCompliant
99 public static function encode($keys, $isW3cCompliant = false) argument
110 if (!$isW3cCompliant) {
126 if (!$isW3cCompliant) {
/template/strap/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDriver.php87 if (!$this->isW3cCompliant = isset($value['capabilities'])) {