WebDriverLocatable.php 909 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // copyright 2004-present facebook. all rights reserved.
  3. //
  4. // licensed under the apache license, version 2.0 (the "license");
  5. // you may not use this file except in compliance with the license.
  6. // you may obtain a copy of the license at
  7. //
  8. // http://www.apache.org/licenses/license-2.0
  9. //
  10. // unless required by applicable law or agreed to in writing, software
  11. // distributed under the license is distributed on an "as is" basis,
  12. // without warranties or conditions of any kind, either express or implied.
  13. // see the license for the specific language governing permissions and
  14. // limitations under the license.
  15. namespace Facebook\WebDriver\Internal;
  16. use Facebook\WebDriver\Interactions\Internal\WebDriverCoordinates;
  17. /**
  18. * Interface representing basic mouse operations.
  19. */
  20. interface WebDriverLocatable
  21. {
  22. /**
  23. * @return WebDriverCoordinates
  24. */
  25. public function getCoordinates();
  26. }