Home
last modified time | relevance | path

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

/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteMouse.php177 * @param int|null $y_offset
184 $y_offset = null argument
193 'actions' => [$this->createMoveAction($where, $x_offset, $y_offset)],
208 if ($y_offset !== null) {
209 $params['yoffset'] = $y_offset;
265 * @param int|null $y_offset
272 $y_offset = null argument
278 'y' => $y_offset === null ? 0 : $y_offset,
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/
H A DWebDriverActions.php138 * @param int $y_offset
141 public function dragAndDropBy(WebDriverElement $source, $x_offset, $y_offset) argument
147 new WebDriverMoveToOffsetAction($this->mouse, null, $x_offset, $y_offset)
160 * @param int $y_offset
163 public function moveByOffset($x_offset, $y_offset) argument
166 new WebDriverMoveToOffsetAction($this->mouse, null, $x_offset, $y_offset)
179 * @param int $y_offset
182 public function moveToElement(WebDriverElement $element, $x_offset = null, $y_offset = null) argument
188 $y_offset
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/Internal/
H A DWebDriverMoveToOffsetAction.php24 * @param int|null $y_offset
30 $y_offset = null argument
34 $this->yOffset = $y_offset;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverPoint.php58 * @param int $y_offset
61 public function moveBy($x_offset, $y_offset) argument
64 $this->y += $y_offset;
H A DWebDriverMouse.php39 * @param int $y_offset
45 $y_offset = null argument