Files
faveo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

17 lines
348 B
PHP

<?php
namespace Facebook\WebDriver\Interactions\Internal;
use Facebook\WebDriver\WebDriverAction;
/**
* Move the the location, click and hold.
*/
class WebDriverClickAndHoldAction extends WebDriverMouseAction implements WebDriverAction
{
public function perform()
{
$this->mouse->mouseDown($this->getActionLocation());
}
}