xref: /plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3namespace Facebook\WebDriver\Interactions\Touch;
4
5use Facebook\WebDriver\WebDriverAction;
6
7class WebDriverLongPressAction extends WebDriverTouchAction implements WebDriverAction
8{
9    public function perform()
10    {
11        $this->touchScreen->longPress($this->locationProvider);
12    }
13}
14