1<?php
2
3namespace Facebook\WebDriver\Internal;
4
5use Facebook\WebDriver\Interactions\Internal\WebDriverCoordinates;
6
7/**
8 * Interface representing basic mouse operations.
9 */
10interface WebDriverLocatable
11{
12    /**
13     * @return WebDriverCoordinates
14     */
15    public function getCoordinates();
16}
17