xref: /plugin/combo/vendor/php-webdriver/webdriver/lib/Internal/WebDriverLocatable.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
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