Files
faveo/vendor/php-webdriver/webdriver/lib/Interactions/Touch/WebDriverTapAction.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

14 lines
283 B
PHP

<?php
namespace Facebook\WebDriver\Interactions\Touch;
use Facebook\WebDriver\WebDriverAction;
class WebDriverTapAction extends WebDriverTouchAction implements WebDriverAction
{
public function perform()
{
$this->touchScreen->tap($this->locationProvider);
}
}