Files
faveo/vendor/php-webdriver/webdriver/lib/Internal/WebDriverLocatable.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

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();
}