1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-11 21:15:09 +02:00
Files
php-e107/vendor/facebook/webdriver/lib/Internal/WebDriverLocatable.php
2018-02-06 03:18:31 -06:00

30 lines
909 B
PHP

<?php
// copyright 2004-present facebook. all rights reserved.
//
// licensed under the apache license, version 2.0 (the "license");
// you may not use this file except in compliance with the license.
// you may obtain a copy of the license at
//
// http://www.apache.org/licenses/license-2.0
//
// unless required by applicable law or agreed to in writing, software
// distributed under the license is distributed on an "as is" basis,
// without warranties or conditions of any kind, either express or implied.
// see the license for the specific language governing permissions and
// limitations under the license.
namespace Facebook\WebDriver\Internal;
use Facebook\WebDriver\Interactions\Internal\WebDriverCoordinates;
/**
* Interface representing basic mouse operations.
*/
interface WebDriverLocatable
{
/**
* @return WebDriverCoordinates
*/
public function getCoordinates();
}