17 lines
296 B
PHP
17 lines
296 B
PHP
<?php
|
|
|
|
namespace Facebook\WebDriver\Internal;
|
|
|
|
use Facebook\WebDriver\Interactions\Internal\WebDriverCoordinates;
|
|
|
|
/**
|
|
* Interface representing basic mouse operations.
|
|
*/
|
|
interface WebDriverLocatable
|
|
{
|
|
/**
|
|
* @return WebDriverCoordinates
|
|
*/
|
|
public function getCoordinates();
|
|
}
|