File "WebDriverButtonReleaseAction.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php
File size: 361 bytes
MIME-type: text/x-php
Charset: utf-8

<?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());
    }
}