updated-packages
This commit is contained in:
16
vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php
vendored
Normal file
16
vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user