14 lines
283 B
PHP
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);
|
|
}
|
|
}
|