Home
last modified time | relevance | path

Searched refs:x_offset (Results 1 – 5 of 5) sorted by relevance

/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteMouse.php176 * @param int|null $x_offset
183 $x_offset = null, argument
193 'actions' => [$this->createMoveAction($where, $x_offset, $y_offset)],
205 if ($x_offset !== null) {
206 $params['xoffset'] = $x_offset;
264 * @param int|null $x_offset
271 $x_offset = null, argument
277 'x' => $x_offset === null ? 0 : $x_offset,
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/
H A DWebDriverActions.php137 * @param int $x_offset
141 public function dragAndDropBy(WebDriverElement $source, $x_offset, $y_offset) argument
147 new WebDriverMoveToOffsetAction($this->mouse, null, $x_offset, $y_offset)
159 * @param int $x_offset
163 public function moveByOffset($x_offset, $y_offset) argument
166 new WebDriverMoveToOffsetAction($this->mouse, null, $x_offset, $y_offset)
178 * @param int $x_offset
182 public function moveToElement(WebDriverElement $element, $x_offset = null, $y_offset = null) argument
187 $x_offset,
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/Internal/
H A DWebDriverMoveToOffsetAction.php23 * @param int|null $x_offset
29 $x_offset = null, argument
33 $this->xOffset = $x_offset;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverPoint.php57 * @param int $x_offset
61 public function moveBy($x_offset, $y_offset) argument
63 $this->x += $x_offset;
H A DWebDriverMouse.php38 * @param int $x_offset
44 $x_offset = null, argument