1<?php
2
3namespace Facebook\WebDriver\Interactions\Internal;
4
5use Facebook\WebDriver\WebDriverAction;
6
7/**
8 * Move the the location, click and hold.
9 */
10class WebDriverClickAndHoldAction extends WebDriverMouseAction implements WebDriverAction
11{
12    public function perform()
13    {
14        $this->mouse->mouseDown($this->getActionLocation());
15    }
16}
17