20 lines
329 B
PHP
20 lines
329 B
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();
|
|
}
|