File "WebDriverHasInputDevices.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php
File size: 329 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}