| Current Path : /home/rtorresani/www/vendor/php-webdriver/webdriver/lib/ |
| Current File : //home/rtorresani/www/vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php |
<?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();
}