/
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 to the location and then release the mouse key. */ class WebDriverButtonReleaseAction extends WebDriverMouseAction implements WebDriverAction { public function perform() { $this->mouse->mouseUp($this->getActionLocation()); } }