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

17 lines
355 B
PHP

<?php
namespace Facebook\WebDriver\Interactions\Internal;
use Facebook\WebDriver\WebDriverAction;
/**
* You can call it 'Right Click' if you like.
*/
class WebDriverContextClickAction extends WebDriverMouseAction implements WebDriverAction
{
public function perform()
{
$this->mouse->contextClick($this->getActionLocation());
}
}