/
home
/
obinna
/
html
/
cravings
/
vendor
/
php-webdriver
/
webdriver
/
lib
/
Interactions
/
Internal
/
Upload File
HOME
<?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()); } }