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