xref: /plugin/combo/vendor/php-webdriver/webdriver/lib/WebDriverHasInputDevices.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3namespace Facebook\WebDriver;
4
5/**
6 * Interface implemented by each driver that allows access to the input devices.
7 */
8interface WebDriverHasInputDevices
9{
10    /**
11     * @return WebDriverKeyboard
12     */
13    public function getKeyboard();
14
15    /**
16     * @return WebDriverMouse
17     */
18    public function getMouse();
19}
20