THANASOFT-DV/gestion/vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php
2025-09-03 15:58:58 +03:00

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();
}