updated-packages
This commit is contained in:
19
vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php
vendored
Normal file
19
vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Facebook\WebDriver;
|
||||
|
||||
/**
|
||||
* Interface implemented by each driver that allows access to the input devices.
|
||||
*/
|
||||
interface WebDriverHasInputDevices
|
||||
{
|
||||
/**
|
||||
* @return WebDriverKeyboard
|
||||
*/
|
||||
public function getKeyboard();
|
||||
|
||||
/**
|
||||
* @return WebDriverMouse
|
||||
*/
|
||||
public function getMouse();
|
||||
}
|
Reference in New Issue
Block a user